From d17463daf148c379cdbe1bc322811ce7a1a5a075 Mon Sep 17 00:00:00 2001 From: avos Date: Sun, 18 Dec 2016 20:40:22 +0000 Subject: [PATCH] MFC r309534: Do not try to recreate wlan(4) interface if it already exists. This should fix error messages caused by devd(8) during startup: Starting Network: lo0 wlan0. ... Starting devd. ifconfig: SIOCS80211: Device busy wpa_supplicant already running? (pid=323). --- etc/pccard_ether | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/pccard_ether b/etc/pccard_ether index 7d324a11b89..bf4f9c23144 100755 --- a/etc/pccard_ether +++ b/etc/pccard_ether @@ -120,6 +120,9 @@ pccard_ether_restart() pccard_ether_startchildren() { for child in `get_if_var $ifn wlans_IF`; do + if ifexists $child; then + continue + fi /etc/rc.d/netif quietstart $child done } -- 2.45.0