mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-05 22:19:32 +01:00
Hacks to run firstboot automatically
SVN-Revision: 110
This commit is contained in:
parent
047796992b
commit
ef2d52108a
@ -3,18 +3,26 @@
|
||||
|
||||
exec 2>/dev/null
|
||||
|
||||
umount /jffs
|
||||
if [ -z "$(mount | grep jffs2)" ]; then
|
||||
[ -f "/tmp/.firstboot" ] && {
|
||||
echo "firstboot is already running"
|
||||
return
|
||||
}
|
||||
touch /tmp/.firstboot
|
||||
|
||||
jdev=$(mount | awk '/jffs2/ {print $3}')
|
||||
|
||||
if [ -z "$jdev" ]; 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 /
|
||||
cd $jdev
|
||||
fi
|
||||
|
||||
mount /dev/mtdblock/2 /rom -o ro
|
||||
|
||||
{
|
||||
cd /rom
|
||||
find . -type d
|
||||
|
@ -1,3 +1,6 @@
|
||||
#!/bin/sh
|
||||
[ -z "$FAILSAFE" ] && {
|
||||
{ mount | grep jffs2 1>-; } || firstboot
|
||||
}
|
||||
# turn off DMZ led
|
||||
echo "0x00" > /proc/sys/diag
|
||||
|
Loading…
Reference in New Issue
Block a user