Hacks to run firstboot automatically
authorMike Baker <mbm@openwrt.org>
Wed, 21 Jul 2004 03:13:56 +0000 (03:13 +0000)
committerMike Baker <mbm@openwrt.org>
Wed, 21 Jul 2004 03:13:56 +0000 (03:13 +0000)
SVN-Revision: 110

root/bin/firstboot
root/etc/init.d/S99done

index b484e1a8189b3c006d50afa45be7f621b4039f63..637f68896e295c864722dac837ac07a508900547 100755 (executable)
@@ -3,18 +3,26 @@
 
 exec 2>/dev/null
 
-umount /jffs 
-if [ -z "$(mount | grep jffs2)" ]; then
+[ -f "/tmp/.firstboot" ] && {
+       echo "firstboot is already running"
+       return
+}
+touch /tmp/.firstboot
+
+jdev=$(mount | awk '/jffs2/ {print $3}')
+
+if [ -z "$jdev" ]; then
        mtd erase OpenWrt
        mount -t jffs2 /dev/mtdblock/4 /jffs
-       mount /dev/mtdblock/2 /rom -o ro
        cd /jffs
 else
        echo "firstboot has already been run"
        echo "fixing symlinks instead"
-       cd /
+       cd $jdev
 fi
 
+mount /dev/mtdblock/2 /rom -o ro
+
 {
        cd /rom
        find . -type d
index c5211813fb6e9482aa392b931114850233d83f5b..3ba15e8bc46d51d8ab65b29a2014f6f4eb6cc161 100755 (executable)
@@ -1,3 +1,6 @@
 #!/bin/sh
+[ -z "$FAILSAFE" ] && {
+       { mount | grep jffs2 1>-; } || firstboot
+}
 # turn off DMZ led
 echo "0x00" > /proc/sys/diag