mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
remove nvram.sh
SVN-Revision: 5153
This commit is contained in:
parent
3ca42101d5
commit
b234ecfdf4
@ -1,19 +0,0 @@
|
||||
#!/bin/ash
|
||||
# Copyright (C) 2006 OpenWrt.org
|
||||
|
||||
|
||||
# allow env to override nvram
|
||||
nvram () {
|
||||
if [ -x /usr/sbin/nvram ]; then
|
||||
case $1 in
|
||||
get) eval "echo \${$2:-\$(/usr/sbin/nvram get $2)}";;
|
||||
*) /usr/sbin/nvram $*;;
|
||||
esac
|
||||
else
|
||||
case $1 in
|
||||
get) eval "echo \${$2:-\${DEFAULT_$2}}";;
|
||||
*);;
|
||||
esac
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user