X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=root%2Fbin%2Ffirstboot;h=b484e1a8189b3c006d50afa45be7f621b4039f63;hb=f9d657cb5c648b235d8442e44bcebf3150986828;hp=b8d66c18ae570e70249c1e4c186791c6f12b4525;hpb=fe0811b36fdacc229ac37fa8ec799efcfeecf049;p=openwrt-10.03%2F.git diff --git a/root/bin/firstboot b/root/bin/firstboot index b8d66c18a..b484e1a81 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;)