diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-11-19 03:17:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-11-19 03:17:20 +0000 |
commit | 733dc9776268432e5188cc496da92137c820f016 (patch) | |
tree | a919b3d5402d4e22697ec2a49d1b005424f25104 /openwrt/package/base-files/default/etc/nvram.sh | |
parent | 9a8a69c0b82a6c128831e75200489ed397d44f44 (diff) | |
download | mtk-20170518-733dc9776268432e5188cc496da92137c820f016.zip mtk-20170518-733dc9776268432e5188cc496da92137c820f016.tar.gz mtk-20170518-733dc9776268432e5188cc496da92137c820f016.tar.bz2 |
hotplug-based network script rewrite
SVN-Revision: 2531
Diffstat (limited to 'openwrt/package/base-files/default/etc/nvram.sh')
-rw-r--r-- | openwrt/package/base-files/default/etc/nvram.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/base-files/default/etc/nvram.sh b/openwrt/package/base-files/default/etc/nvram.sh index f1170ac..4d39a10 100644 --- a/openwrt/package/base-files/default/etc/nvram.sh +++ b/openwrt/package/base-files/default/etc/nvram.sh @@ -4,8 +4,8 @@ nvram () { if [ -x /usr/sbin/nvram ]; then case $1 in - get) eval "echo \${$2:-\$(command nvram get $2)}";; - *) command nvram $*;; + get) eval "echo \${$2:-\$(/usr/sbin/nvram get $2)}";; + *) /usr/sbin/nvram $*;; esac else case $1 in |