aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/functions.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openwrt.org>2005-09-10 18:28:33 +0000
committerWaldemar Brodkorb <wbx@openwrt.org>2005-09-10 18:28:33 +0000
commit7d821c627958b47e224e8b42f1b8ff2a039e7833 (patch)
treebaa5995d4cd133c8168e8ae38379268212df3e21 /package/base-files/default/etc/functions.sh
parent6eff2266e3340a2b91c08917601a3aadc8d8452e (diff)
downloadmaster-187ad058-7d821c627958b47e224e8b42f1b8ff2a039e7833.tar.gz
master-187ad058-7d821c627958b47e224e8b42f1b8ff2a039e7833.tar.bz2
master-187ad058-7d821c627958b47e224e8b42f1b8ff2a039e7833.zip
add nvram.sh to all startup scripts, no errors on wgt634u
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1892 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, 1 insertions, 15 deletions
diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh
index 14f5011db7..c813e39a61 100755
--- a/package/base-files/default/etc/functions.sh
+++ b/package/base-files/default/etc/functions.sh
@@ -1,22 +1,8 @@
#!/bin/ash
+. /etc/nvram.sh
alias debug=${DEBUG:-:}
-# allow env to override nvram
-nvram () {
- 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
-}
-
# valid interface?
if_valid () (
ifconfig "$1" >&- 2>&- ||