1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 23:41:59 +03:00

allow firstboot to be rerun

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2004-05-04 09:42:46 +00:00
parent 83ad9f6c02
commit a5719244d6

View File

@ -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;)