diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-10 20:51:36 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-10 20:51:36 +0000 |
commit | 0cb79f7ab2ef0ebeea45c2d01ddeb26369f3bb5c (patch) | |
tree | a7f5ed1dee574595ae240f2572ad002bfb6ab36b | |
parent | 6899d3a1a2ea09513e99e260cb33398e3866028a (diff) |
fix stupid error from me
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1894 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/base-files/default/etc/init.d/S10boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/default/etc/init.d/S10boot b/package/base-files/default/etc/init.d/S10boot index 3ec41b119..a827391fe 100755 --- a/package/base-files/default/etc/init.d/S10boot +++ b/package/base-files/default/etc/init.d/S10boot @@ -1,8 +1,8 @@ #!/bin/sh . /etc/nvram.sh -if [ "$(uname -r|grep 2.4)" = "0" ];do +if [ "$(uname -r|grep 2.4)" = "0" ];then echo "S" > /proc/jffs2_bbc -done +fi mkdir -p /var/run mkdir -p /var/log |