remove nvram.sh
authorFelix Fietkau <nbd@openwrt.org>
Mon, 16 Oct 2006 04:32:21 +0000 (04:32 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 16 Oct 2006 04:32:21 +0000 (04:32 +0000)
SVN-Revision: 5153

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  
-}
-