projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bump version to 2.8
[openwrt.git]
/
root
/
bin
/
firstboot
diff --git
a/root/bin/firstboot
b/root/bin/firstboot
index
227cedb
..
b484e1a
100755
(executable)
--- a/
root/bin/firstboot
+++ b/
root/bin/firstboot
@@
-1,15
+1,24
@@
#!/bin/sh
#!/bin/sh
+# $Id$
exec 2>/dev/null
umount /jffs
exec 2>/dev/null
umount /jffs
-mtd erase OpenWrt
-mount -t jffs2 /dev/mtdblock/4 /jffs
-mount /dev/mtdblock/2 /rom -o ro
-cd /jffs
+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 /rom
find . -type d
+ cd -
} | xargs mkdir
for file in $(cd /rom; find * -type f; find * -type l;)
} | xargs mkdir
for file in $(cd /rom; find * -type f; find * -type l;)
This page took
0.029853 seconds
and
4
git commands to generate.