diff options
author | Mike Baker <mbm@openwrt.org> | 2004-05-04 09:42:46 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2004-05-04 09:42:46 +0000 |
commit | 5517f1169f618f5e85f764d81c90472dd528a55b (patch) | |
tree | 04c9a5eb80e43eb64f5987c205777acb62c4e7ec | |
parent | 69a92ec0906ba3e06315dca79d75ec679f9ea1a4 (diff) | |
download | upstream-5517f1169f618f5e85f764d81c90472dd528a55b.tar.gz upstream-5517f1169f618f5e85f764d81c90472dd528a55b.tar.bz2 upstream-5517f1169f618f5e85f764d81c90472dd528a55b.zip |
allow firstboot to be rerun
SVN-Revision: 17
-rwxr-xr-x | root/bin/firstboot | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/root/bin/firstboot b/root/bin/firstboot index b8d66c18ae..b484e1a818 100755 --- a/root/bin/firstboot +++ b/root/bin/firstboot @@ -1,21 +1,24 @@ #!/bin/sh +# $Id$ exec 2>/dev/null umount /jffs -mount | grep jffs2 && { +if [ -z "$(mount | grep jffs2)" ]; 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 "to run firstboot again you must boot failsafe" - exit -} + echo "fixing symlinks instead" + cd / +fi -mtd erase OpenWrt -mount -t jffs2 /dev/mtdblock/4 /jffs -mount /dev/mtdblock/2 /rom -o ro -cd /jffs { cd /rom find . -type d + cd - } | xargs mkdir for file in $(cd /rom; find * -type f; find * -type l;) |