[PATCH] discover/network: Ignore tun devices

Samuel Mendoza-Jonas sam at mendozajonas.com
Wed Aug 10 17:13:18 AEST 2016


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 <sam at mendozajonas.com>
---
 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.9.2



More information about the Petitboot mailing list