allow firstboot to be rerun
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
1e761ac341
commit
882861c3cf
|
@ -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
|
||||||
|
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 "firstboot has already been run"
|
||||||
echo "to run firstboot again you must boot failsafe"
|
echo "fixing symlinks instead"
|
||||||
exit
|
cd /
|
||||||
}
|
fi
|
||||||
|
|
||||||
mtd erase OpenWrt
|
|
||||||
mount -t jffs2 /dev/mtdblock/4 /jffs
|
|
||||||
mount /dev/mtdblock/2 /rom -o ro
|
|
||||||
cd /jffs
|
|
||||||
{
|
{
|
||||||
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;)
|
||||||
|
|
Loading…
Reference in New Issue