From 5496eee36f70631ae45403f90ed7b4dc143f27c0 Mon Sep 17 00:00:00 2001 From: Samuel Mendoza-Jonas Date: Thu, 30 Jun 2016 16:13:58 +1000 Subject: [PATCH] discover/network: Ignore tun devices In some environments a default 'tun' device is created. Petitboot doesn't use this and it clutters up the list of network devices, so ignore it if it is encountered. Signed-off-by: Samuel Mendoza-Jonas --- discover/network.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discover/network.c b/discover/network.c index 4b79015..2de96ec 100644 --- a/discover/network.c +++ b/discover/network.c @@ -515,6 +515,9 @@ static int network_handle_nlmsg(struct network *network, struct nlmsghdr *nlmsg) return 0; } + /* ignore the default tun device in some environments */ + if (strncmp(ifname, "tun", strlen("tun")) == 0) + return 0; interface = find_interface_by_ifindex(network, info->ifi_index); if (!interface) { -- 2.39.2