mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 22:47:30 +02:00
4092003baf
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4650 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
455 B
Plaintext
26 lines
455 B
Plaintext
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
include network
|
|
|
|
addif() {
|
|
scan_interfaces
|
|
setup_interface "$INTERFACE"
|
|
|
|
# find all vlan configurations for this interface and set them up as well
|
|
for ifc in $interfaces; do
|
|
config_get iftype "$ifc" type
|
|
config_get ifs "$ifc" ifname
|
|
for dev in $ifs; do
|
|
[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
|
|
add_vlan "$dev"
|
|
}
|
|
done
|
|
done
|
|
}
|
|
|
|
case "$ACTION" in
|
|
add|register)
|
|
addif
|
|
;;
|
|
esac
|