remove nvram.sh
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 16 Oct 2006 04:32:21 +0000 (04:32 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 16 Oct 2006 04:32:21 +0000 (04:32 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5153 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/base-files/default/etc/nvram.sh [deleted file]

diff --git a/package/base-files/default/etc/nvram.sh b/package/base-files/default/etc/nvram.sh
deleted file mode 100644 (file)
index ddbd88b..0000000
+++ /dev/null
@@ -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  
-}
-