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 | 69f580065a2eefceaadf31ea069e82bbf67979c4 (patch) | |
tree | d7b4f0a925343f55fbaa1bfb5c1022786ff2715c /openwrt/package/base-files | |
parent | adc044ddeade8febbf0724ac52b156d600e8e290 (diff) |
fix stupid error from me
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1894 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S10boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S10boot b/openwrt/package/base-files/default/etc/init.d/S10boot index 3ec41b1190..a827391fe4 100755 --- a/openwrt/package/base-files/default/etc/init.d/S10boot +++ b/openwrt/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 |