summaryrefslogtreecommitdiffstats
path: root/openwrt/package/base-files/default/etc/nvram.sh
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-10 18:28:33 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-10 18:28:33 +0000
commit6f8004f613c150756c62b31518740054d518a651 (patch)
tree6ae11ee54717b18a79bef4002784907ffefd6a82 /openwrt/package/base-files/default/etc/nvram.sh
parent1ddbca81497a8265a7cd94986cc60f973a2e3010 (diff)
add nvram.sh to all startup scripts, no errors on wgt634u
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1892 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files/default/etc/nvram.sh')
-rw-r--r--openwrt/package/base-files/default/etc/nvram.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/openwrt/package/base-files/default/etc/nvram.sh b/openwrt/package/base-files/default/etc/nvram.sh
new file mode 100644
index 000000000..f1170ac47
--- /dev/null
+++ b/openwrt/package/base-files/default/etc/nvram.sh
@@ -0,0 +1,17 @@
+#!/bin/ash
+
+# 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
+}
+