summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-09-10 18:28:33 +0000
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-09-10 18:28:33 +0000
commit2bd018b167ffd850c9ff55fa002cca3b4da2f501 (patch)
tree6ae11ee54717b18a79bef4002784907ffefd6a82 /openwrt/package/base-files
parentec466e8b25c3a0e6dabc9ebcfa80e76c2d1eacfc (diff)
downloadmtk-20170518-2bd018b167ffd850c9ff55fa002cca3b4da2f501.zip
mtk-20170518-2bd018b167ffd850c9ff55fa002cca3b4da2f501.tar.gz
mtk-20170518-2bd018b167ffd850c9ff55fa002cca3b4da2f501.tar.bz2
add nvram.sh to all startup scripts, no errors on wgt634u
SVN-Revision: 1892
Diffstat (limited to 'openwrt/package/base-files')
-rwxr-xr-xopenwrt/package/base-files/default/etc/functions.sh16
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S10boot5
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/rcS1
-rw-r--r--openwrt/package/base-files/default/etc/nvram.sh17
-rwxr-xr-xopenwrt/package/base-files/default/etc/preinit1
-rwxr-xr-xopenwrt/package/base-files/default/sbin/mount_root1
6 files changed, 25 insertions, 16 deletions
diff --git a/openwrt/package/base-files/default/etc/functions.sh b/openwrt/package/base-files/default/etc/functions.sh
index 14f5011..c813e39 100755
--- a/openwrt/package/base-files/default/etc/functions.sh
+++ b/openwrt/package/base-files/default/etc/functions.sh
@@ -1,22 +1,8 @@
#!/bin/ash
+. /etc/nvram.sh
alias debug=${DEBUG:-:}
-# allow env to override nvram
-nvram () {
- if [ -x /usr/sbin/nvram ]; then
- case $1 in
- get) eval "echo \${$2:-\$(command nvram get $2)}";;
- *) command nvram $*;;
- esac
- else
- case $1 in
- get) eval "echo \${$2:-\${DEFAULT_$2}}";;
- *);;
- esac
- fi
-}
-
# valid interface?
if_valid () (
ifconfig "$1" >&- 2>&- ||
diff --git a/openwrt/package/base-files/default/etc/init.d/S10boot b/openwrt/package/base-files/default/etc/init.d/S10boot
index 37eb7b3..3ec41b1 100755
--- a/openwrt/package/base-files/default/etc/init.d/S10boot
+++ b/openwrt/package/base-files/default/etc/init.d/S10boot
@@ -1,5 +1,8 @@
#!/bin/sh
-echo "S" > /proc/jffs2_bbc
+. /etc/nvram.sh
+if [ "$(uname -r|grep 2.4)" = "0" ];do
+ echo "S" > /proc/jffs2_bbc
+done
mkdir -p /var/run
mkdir -p /var/log
diff --git a/openwrt/package/base-files/default/etc/init.d/rcS b/openwrt/package/base-files/default/etc/init.d/rcS
index 7065858..10079c5 100755
--- a/openwrt/package/base-files/default/etc/init.d/rcS
+++ b/openwrt/package/base-files/default/etc/init.d/rcS
@@ -1,4 +1,5 @@
#!/bin/sh
+. /etc/nvram.sh
syslog_ip=$(nvram get log_ipaddr)
ipcalc -s "$syslog_ip" || syslog_ip=""
syslogd -C 16 ${syslog_ip:+-L -R $syslog_ip}
diff --git a/openwrt/package/base-files/default/etc/nvram.sh b/openwrt/package/base-files/default/etc/nvram.sh
new file mode 100644
index 0000000..f1170ac
--- /dev/null
+++ b/openwrt/package/base-files/default/etc/nvram.sh
@@ -0,0 +1,17 @@
+#!/bin/ash
+
+# allow env to override nvram
+nvram () {
+ if [ -x /usr/sbin/nvram ]; then
+ case $1 in
+ get) eval "echo \${$2:-\$(command nvram get $2)}";;
+ *) command nvram $*;;
+ esac
+ else
+ case $1 in
+ get) eval "echo \${$2:-\${DEFAULT_$2}}";;
+ *);;
+ esac
+ fi
+}
+
diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit
index b23f883..34de88c 100755
--- a/openwrt/package/base-files/default/etc/preinit
+++ b/openwrt/package/base-files/default/etc/preinit
@@ -1,4 +1,5 @@
#!/bin/sh
+. /etc/nvram.sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
mount none /proc -t proc
insmod diag
diff --git a/openwrt/package/base-files/default/sbin/mount_root b/openwrt/package/base-files/default/sbin/mount_root
index 29c5126..ae78ee4 100755
--- a/openwrt/package/base-files/default/sbin/mount_root
+++ b/openwrt/package/base-files/default/sbin/mount_root
@@ -1,4 +1,5 @@
#!/bin/sh
+. /etc/nvram.sh
if [ "$1" != "failsafe" ]; then
mount | grep jffs2 >&-
if [ $? = 0 ] ; then