1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-13 10:49:13 +02:00

allow firstboot to be rerun

SVN-Revision: 17
This commit is contained in:
Mike Baker 2004-05-04 09:42:46 +00:00
parent 69a92ec090
commit 5517f1169f

View File

@ -1,21 +1,24 @@
#!/bin/sh #!/bin/sh
# $Id$
exec 2>/dev/null exec 2>/dev/null
umount /jffs umount /jffs
mount | grep jffs2 && { if [ -z "$(mount | grep jffs2)" ]; then
echo "firstboot has already been run"
echo "to run firstboot again you must boot failsafe"
exit
}
mtd erase OpenWrt mtd erase OpenWrt
mount -t jffs2 /dev/mtdblock/4 /jffs mount -t jffs2 /dev/mtdblock/4 /jffs
mount /dev/mtdblock/2 /rom -o ro mount /dev/mtdblock/2 /rom -o ro
cd /jffs cd /jffs
else
echo "firstboot has already been run"
echo "fixing symlinks instead"
cd /
fi
{ {
cd /rom cd /rom
find . -type d find . -type d
cd -
} | xargs mkdir } | xargs mkdir
for file in $(cd /rom; find * -type f; find * -type l;) for file in $(cd /rom; find * -type f; find * -type l;)