X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=package%2Fbase-files%2Ffiles%2Fetc%2Fhotplug.d%2Fnet%2F10-net;h=c006b9c255ff6793205f0800f5edddc31e73e2d1;hp=0886c74c59661d7670c509cc7e4662666b2ae9d0;hb=a5908806d035779f03cdbc5dcd5670ebd64cc26e;hpb=2644171202a2b5602f7c847fd9a560bca7d9214b diff --git a/package/base-files/files/etc/hotplug.d/net/10-net b/package/base-files/files/etc/hotplug.d/net/10-net index 0886c74c5..c006b9c25 100644 --- a/package/base-files/files/etc/hotplug.d/net/10-net +++ b/package/base-files/files/etc/hotplug.d/net/10-net @@ -12,20 +12,23 @@ addif() { # PPP devices are configured by pppd, no need to run setup_interface here case "$INTERFACE" in ppp*|3g-*) return 0;; - ath*) return 0;; - wlan*) return 0;; esac scan_interfaces local cfg="$(find_config "$INTERFACE")" - # check the autoload setting - config_get auto "$cfg" auto - case "$auto" in - 1|on|enabled) setup_interface "$INTERFACE";; + case "$INTERFACE" in + # Skip wireless parent interfaces + ath[0-9]|wlan[0-9]) ;; + *) + # check the autoload setting + config_get auto "$cfg" auto + case "$auto" in + 1|on|enabled) setup_interface "$INTERFACE";; + esac + ;; esac - # find all vlan configurations for this interface and set them up as well for ifc in $interfaces; do config_get iftype "$ifc" type