mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 23:02:50 +02:00
2af90479fb
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2531 3c298f89-4303-0410-b956-a3cf2f4a3e73
18 lines
301 B
Bash
18 lines
301 B
Bash
#!/bin/ash
|
|
|
|
# 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
|
|
}
|
|
|