diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-03 21:20:56 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-03 21:20:56 +0000 |
commit | b0d0ea4744a29d6224be5caf52ea92d8b18e5251 (patch) | |
tree | 51c325671ab7c3efda94f0ceaa1ab49be397643f /target/default | |
parent | 8224e2af0b928914c3a3b84628dd200d3e74546c (diff) |
move firstboot from S99done to S10boot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@549 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/default')
-rwxr-xr-x | target/default/target_skeleton/etc/init.d/S10boot | 5 | ||||
-rwxr-xr-x | target/default/target_skeleton/etc/init.d/S99done | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/target/default/target_skeleton/etc/init.d/S10boot b/target/default/target_skeleton/etc/init.d/S10boot index 1a36583cc..e1f47ba27 100755 --- a/target/default/target_skeleton/etc/init.d/S10boot +++ b/target/default/target_skeleton/etc/init.d/S10boot @@ -35,3 +35,8 @@ HOSTNAME=${HOSTNAME%%.*} echo ${HOSTNAME:=OpenWrt} > /proc/sys/kernel/hostname vconfig set_name_type VLAN_PLUS_VID_NO_PAD + +# automagically run firstboot +[ -z "$FAILSAFE" ] && { + { mount | grep jffs2 1>&-; } || firstboot +} diff --git a/target/default/target_skeleton/etc/init.d/S99done b/target/default/target_skeleton/etc/init.d/S99done index 8811e99bf..70eef460d 100755 --- a/target/default/target_skeleton/etc/init.d/S99done +++ b/target/default/target_skeleton/etc/init.d/S99done @@ -1,7 +1,3 @@ #!/bin/sh -# automagically run firstboot -[ -z "$FAILSAFE" ] && { - { mount | grep jffs2 1>&-; } || firstboot -} # set leds to normal state echo "0x00" > /proc/sys/diag |