From ef2d52108aa43efd63548c2b0edaae676c29ae49 Mon Sep 17 00:00:00 2001 From: Mike Baker Date: Wed, 21 Jul 2004 03:13:56 +0000 Subject: Hacks to run firstboot automatically SVN-Revision: 110 --- root/bin/firstboot | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'root/bin') 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 -- cgit v1.1