allow firstboot to be rerun
SVN-Revision: 17
This commit is contained in:
parent
69a92ec090
commit
5517f1169f
@ -1,21 +1,24 @@
|
||||
#!/bin/sh
|
||||
# $Id$
|
||||
|
||||
exec 2>/dev/null
|
||||
|
||||
umount /jffs
|
||||
mount | grep jffs2 && {
|
||||
echo "firstboot has already been run"
|
||||
echo "to run firstboot again you must boot failsafe"
|
||||
exit
|
||||
}
|
||||
|
||||
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 "fixing symlinks instead"
|
||||
cd /
|
||||
fi
|
||||
|
||||
{
|
||||
cd /rom
|
||||
find . -type d
|
||||
cd -
|
||||
} | xargs mkdir
|
||||
|
||||
for file in $(cd /rom; find * -type f; find * -type l;)
|
||||
|
Loading…
Reference in New Issue
Block a user