summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files/default/sbin/ifup
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-21 14:02:53 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-21 14:02:53 +0000
commit629b5c0767c8557ab688582bb6bd86c448f8c243 (patch)
tree57b8983b840371a9290d4ead137ab9ea8f457c5f /openwrt/package/base-files/default/sbin/ifup
parentaf1defb8112803209042a689abfe38beaf1a4554 (diff)
add config file /etc/config/network, add board-specific network.overrides (instead of nvram.overrides)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1519 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/sbin/ifup')
-rwxr-xr-xopenwrt/package/base-files/default/sbin/ifup3
1 files changed, 3 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/sbin/ifup b/openwrt/package/base-files/default/sbin/ifup
index 5dac3f9987..6aa998713c 100755
--- a/openwrt/package/base-files/default/sbin/ifup
+++ b/openwrt/package/base-files/default/sbin/ifup
@@ -1,6 +1,9 @@
#!/bin/ash
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
+. /etc/network.overrides
+[ -e /etc/config/network ] && . /etc/config/network
+
type=$1
debug "### ifup $type ###"