summaryrefslogtreecommitdiffstats
path: root/package/base-files/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-03-18 18:24:51 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-03-18 18:24:51 +0000
commitfe8b9d5232b7a5cd2a5d14f5f00b9b4e0057bcfc (patch)
tree6f23ab8749d83756fed8e5cbf89655e8745d79f8 /package/base-files/files
parenta8d84ae94d0d5ebef14916d79cf0f10748e89bf4 (diff)
downloadmaster-31e0f0ae-fe8b9d5232b7a5cd2a5d14f5f00b9b4e0057bcfc.tar.gz
master-31e0f0ae-fe8b9d5232b7a5cd2a5d14f5f00b9b4e0057bcfc.tar.bz2
master-31e0f0ae-fe8b9d5232b7a5cd2a5d14f5f00b9b4e0057bcfc.zip
base-files: properly handle vlans on top of wireless interfaces
SVN-Revision: 26230
Diffstat (limited to 'package/base-files/files')
-rw-r--r--package/base-files/files/etc/hotplug.d/net/10-net17
1 files changed, 10 insertions, 7 deletions
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 4744a1e810..013ece39ce 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
3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) 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