From b0d0ea4744a29d6224be5caf52ea92d8b18e5251 Mon Sep 17 00:00:00 2001
From: nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Sun, 3 Apr 2005 21:20:56 +0000
Subject: [PATCH] move firstboot from S99done to S10boot

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@549 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 target/default/target_skeleton/etc/init.d/S10boot | 5 +++++
 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
-- 
2.20.1