prevent script from being run multiple times
SVN-Revision: 5
This commit is contained in:
parent
fee8556c06
commit
359df15b04
1 changed files with 6 additions and 0 deletions
|
@ -3,6 +3,12 @@
|
||||||
exec 2>/dev/null
|
exec 2>/dev/null
|
||||||
|
|
||||||
umount /jffs
|
umount /jffs
|
||||||
|
mount | grep jffs2 && {
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in a new issue