aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/functions.sh
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-07-21 14:02:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-07-21 14:02:53 +0000
commit2afc4e3e6663473610d0f46c9bae925ee2bd251d (patch)
tree6774b82fd38b45494fc668c919d763dae64ab7c1 /package/base-files/default/etc/functions.sh
parent6b386ef312f4c77b502bdf497b9e19a548b58101 (diff)
downloadupstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.tar.gz
upstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.tar.bz2
upstream-2afc4e3e6663473610d0f46c9bae925ee2bd251d.zip
add config file /etc/config/network, add board-specific network.overrides (instead of nvram.overrides)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1519 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/etc/functions.sh')
-rwxr-xr-xpackage/base-files/default/etc/functions.sh16
1 files changed, 11 insertions, 5 deletions
diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh
index 60d6231f8a..14f5011db7 100755
--- a/package/base-files/default/etc/functions.sh
+++ b/package/base-files/default/etc/functions.sh
@@ -4,12 +4,18 @@ alias debug=${DEBUG:-:}
# allow env to override nvram
nvram () {
- case $1 in
- get) eval "echo \${NVRAM_$2:-\$(command nvram get $2)}";;
- *) command nvram $*;;
- esac
+ if [ -x /usr/sbin/nvram ]; then
+ case $1 in
+ get) eval "echo \${$2:-\$(command nvram get $2)}";;
+ *) command nvram $*;;
+ esac
+ else
+ case $1 in
+ get) eval "echo \${$2:-\${DEFAULT_$2}}";;
+ *);;
+ esac
+ fi
}
-. /etc/nvram.overrides
# valid interface?
if_valid () (