2006-06-27 00:36:13 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
|
2006-09-24 13:32:18 +00:00
|
|
|
include /lib/network
|
2006-04-13 11:39:20 +00:00
|
|
|
|
2006-07-30 03:09:09 +00:00
|
|
|
addif() {
|
2007-02-25 13:45:45 +00:00
|
|
|
# PPP devices are configured by pppd, no need to run setup_interface here
|
|
|
|
case "$INTERFACE" in
|
|
|
|
ppp*) return 0;;
|
|
|
|
esac
|
|
|
|
|
2006-07-30 03:09:09 +00:00
|
|
|
scan_interfaces
|
2006-11-03 21:57:35 +00:00
|
|
|
local cfg="$(find_config "$INTERFACE")"
|
|
|
|
|
|
|
|
# check the autoload setting
|
|
|
|
config_get auto "$cfg" auto
|
|
|
|
case "$auto" in
|
|
|
|
1|on|enabled) setup_interface "$INTERFACE";;
|
|
|
|
esac
|
|
|
|
|
2006-08-24 12:20:02 +00:00
|
|
|
|
2006-07-30 03:09:09 +00:00
|
|
|
# find all vlan configurations for this interface and set them up as well
|
|
|
|
for ifc in $interfaces; do
|
2006-07-30 13:21:18 +00:00
|
|
|
config_get iftype "$ifc" type
|
2006-10-09 12:35:31 +00:00
|
|
|
config_get ifs "$ifc" device
|
2006-07-30 03:09:09 +00:00
|
|
|
for dev in $ifs; do
|
|
|
|
[ "${dev%%\.*}" = "$INTERFACE" -a "$dev" != "$INTERFACE" ] && {
|
|
|
|
add_vlan "$dev"
|
2005-11-19 03:17:20 +00:00
|
|
|
}
|
2006-07-30 03:09:09 +00:00
|
|
|
done
|
|
|
|
done
|
2005-11-19 03:17:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case "$ACTION" in
|
2006-07-30 03:09:09 +00:00
|
|
|
add|register)
|
2006-10-09 04:01:36 +00:00
|
|
|
case "$PHYSDEVDRIVER" in
|
|
|
|
natsemi) sleep 1;;
|
|
|
|
esac
|
2006-07-30 03:09:09 +00:00
|
|
|
addif
|
|
|
|
;;
|
2005-11-19 03:17:20 +00:00
|
|
|
esac
|