mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 08:13:20 +02:00
[package] base-files: properly handle vlans on top of wireless interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26230 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
cdb411af99
commit
46dd8a523b
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=base-files
|
PKG_NAME:=base-files
|
||||||
PKG_RELEASE:=67
|
PKG_RELEASE:=68
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
PKG_BUILD_DEPENDS:=opkg/host
|
PKG_BUILD_DEPENDS:=opkg/host
|
||||||
|
@ -12,19 +12,22 @@ addif() {
|
|||||||
# PPP devices are configured by pppd, no need to run setup_interface here
|
# PPP devices are configured by pppd, no need to run setup_interface here
|
||||||
case "$INTERFACE" in
|
case "$INTERFACE" in
|
||||||
3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) return 0;;
|
3g-*|ppp-*|pppoa-*|pppoe-*|pptp-*) return 0;;
|
||||||
ath*) return 0;;
|
|
||||||
wlan*) return 0;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
scan_interfaces
|
scan_interfaces
|
||||||
local cfg="$(find_config "$INTERFACE")"
|
local cfg="$(find_config "$INTERFACE")"
|
||||||
|
|
||||||
|
case "$INTERFACE" in
|
||||||
|
# Skip wireless parent interfaces
|
||||||
|
ath[0-9]|wlan[0-9]) ;;
|
||||||
|
*)
|
||||||
# check the autoload setting
|
# check the autoload setting
|
||||||
config_get auto "$cfg" auto
|
config_get auto "$cfg" auto
|
||||||
case "$auto" in
|
case "$auto" in
|
||||||
1|on|enabled) setup_interface "$INTERFACE";;
|
1|on|enabled) setup_interface "$INTERFACE";;
|
||||||
esac
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# find all vlan configurations for this interface and set them up as well
|
# find all vlan configurations for this interface and set them up as well
|
||||||
for ifc in $interfaces; do
|
for ifc in $interfaces; do
|
||||||
|
Loading…
Reference in New Issue
Block a user