aboutsummaryrefslogtreecommitdiffstats
path: root/root
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2004-07-21 03:13:56 +0000
committerMike Baker <mbm@openwrt.org>2004-07-21 03:13:56 +0000
commit8759e5ea8ad3f70a576ec91a6b98729427b78d9f (patch)
treeeefeff1b48aef1a05db0337a49593c3baa999386 /root
parentba3540396fc8d930f28872bfc1167b5cc65a9edc (diff)
downloadupstream-8759e5ea8ad3f70a576ec91a6b98729427b78d9f.tar.gz
upstream-8759e5ea8ad3f70a576ec91a6b98729427b78d9f.tar.bz2
upstream-8759e5ea8ad3f70a576ec91a6b98729427b78d9f.zip
Hacks to run firstboot automatically
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@110 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'root')
-rwxr-xr-xroot/bin/firstboot16
-rwxr-xr-xroot/etc/init.d/S99done3
2 files changed, 15 insertions, 4 deletions
diff --git a/root/bin/firstboot b/root/bin/firstboot
index b484e1a8189..637f68896e2 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 c5211813fb6..3ba15e8bc46 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