diff options
author | Mike Baker <mbm@openwrt.org> | 2004-03-28 01:22:15 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2004-03-28 01:22:15 +0000 |
commit | 359df15b04ae534fbff231426651b133304b03d5 (patch) | |
tree | c6e48b0247246a1ed624011f1c2955fdfe862188 /root | |
parent | fee8556c06c10bfed0af070b604f47554a24306f (diff) | |
download | mtk-20170518-359df15b04ae534fbff231426651b133304b03d5.zip mtk-20170518-359df15b04ae534fbff231426651b133304b03d5.tar.gz mtk-20170518-359df15b04ae534fbff231426651b133304b03d5.tar.bz2 |
prevent script from being run multiple times
SVN-Revision: 5
Diffstat (limited to 'root')
-rwxr-xr-x | root/bin/firstboot | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/root/bin/firstboot b/root/bin/firstboot index 227cedb..b8d66c1 100755 --- a/root/bin/firstboot +++ b/root/bin/firstboot @@ -3,6 +3,12 @@ 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 +} + mtd erase OpenWrt mount -t jffs2 /dev/mtdblock/4 /jffs mount /dev/mtdblock/2 /rom -o ro |