diff options
author | Mike Baker <mbm@openwrt.org> | 2004-07-21 03:13:56 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2004-07-21 03:13:56 +0000 |
commit | ef2d52108aa43efd63548c2b0edaae676c29ae49 (patch) | |
tree | eefeff1b48aef1a05db0337a49593c3baa999386 /root | |
parent | 047796992b8d4f5c36d54cd426b97227507805a2 (diff) | |
download | mtk-20170518-ef2d52108aa43efd63548c2b0edaae676c29ae49.zip mtk-20170518-ef2d52108aa43efd63548c2b0edaae676c29ae49.tar.gz mtk-20170518-ef2d52108aa43efd63548c2b0edaae676c29ae49.tar.bz2 |
Hacks to run firstboot automatically
SVN-Revision: 110
Diffstat (limited to 'root')
-rwxr-xr-x | root/bin/firstboot | 16 | ||||
-rwxr-xr-x | root/etc/init.d/S99done | 3 |
2 files changed, 15 insertions, 4 deletions
diff --git a/root/bin/firstboot b/root/bin/firstboot index b484e1a..637f688 100755 --- a/root/bin/firstboot +++ b/root/bin/firstboot @@ -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 diff --git a/root/etc/init.d/S99done b/root/etc/init.d/S99done index c521181..3ba15e8 100755 --- a/root/etc/init.d/S99done +++ b/root/etc/init.d/S99done @@ -1,3 +1,6 @@ #!/bin/sh +[ -z "$FAILSAFE" ] && { + { mount | grep jffs2 1>-; } || firstboot +} # turn off DMZ led echo "0x00" > /proc/sys/diag |