diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-01 08:30:05 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-01 08:30:05 +0000 |
commit | 0ef1c1585fc01ad3bb968ab57ef169881f7cafb1 (patch) | |
tree | f1a506971f430bc72bd24c9b5d786ef77e14b83a /openwrt/target/default/target_skeleton | |
parent | 8cd0206134327033b38ed5233bff27ba5cc47ce2 (diff) |
switch to a more reliable mechanism for running firstboot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1126 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/default/target_skeleton')
-rwxr-xr-x | openwrt/target/default/target_skeleton/etc/init.d/S10boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/target/default/target_skeleton/etc/init.d/S10boot b/openwrt/target/default/target_skeleton/etc/init.d/S10boot index 8b7ec9a770..f45eafb1e7 100755 --- a/openwrt/target/default/target_skeleton/etc/init.d/S10boot +++ b/openwrt/target/default/target_skeleton/etc/init.d/S10boot @@ -36,5 +36,5 @@ vconfig set_name_type VLAN_PLUS_VID_NO_PAD # automagically run firstboot [ -z "$FAILSAFE" ] && { - { mount|grep jffs2 1>&-; } || firstboot + { mount|grep "on / type jffs2" 1>&-; } || firstboot } |