diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-10 18:28:33 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-10 18:28:33 +0000 |
commit | 6dc988729c78347c590675fe4bfdb9bb408fffc7 (patch) | |
tree | baa5995d4cd133c8168e8ae38379268212df3e21 /package/base-files/default/etc/init.d/S10boot | |
parent | 8dde7740ee758ab54a94c663081afae7d5163d6b (diff) |
add nvram.sh to all startup scripts, no errors on wgt634u
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1892 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/default/etc/init.d/S10boot')
-rwxr-xr-x | package/base-files/default/etc/init.d/S10boot | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/default/etc/init.d/S10boot b/package/base-files/default/etc/init.d/S10boot index 37eb7b3cc7..3ec41b1190 100755 --- a/package/base-files/default/etc/init.d/S10boot +++ b/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 |