1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

rewrite of the network scripts and configuration

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4323 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-07-30 03:09:09 +00:00
parent 31d94a76a7
commit c4f3575368
39 changed files with 482 additions and 650 deletions

View File

@@ -1,15 +1,19 @@
#!/bin/sh
[ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
. /etc/config/network
. /etc/functions.sh
include network
RESOLV_CONF="/tmp/resolv.conf"
hotplug_event() {
for ifname in lan wan wifi ${ifnames}; do
eval "proto=\"\${${ifname}_proto}\""
eval "if=\"\${${ifname}_ifname}\""
scan_interfaces
for ifc in $interfaces; do
config_get ifname $ifc ifname
[ "$ifname" = "$interface" ] || continue
config_get proto $ifc proto
[ "$proto" = "dhcp" ] || continue
[ "$if" = "$interface" ] || continue
env -i ACTION="$1" INTERFACE="$ifname" PROTO=dhcp /sbin/hotplug iface
done
}