mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-08 21:03:09 +02:00
8 lines
165 B
Plaintext
8 lines
165 B
Plaintext
|
#!/bin/sh
|
||
|
# automagically run firstboot
|
||
|
[ -z "$FAILSAFE" ] && {
|
||
|
{ mount | grep jffs2 1>&-; } || firstboot
|
||
|
}
|
||
|
# set leds to normal state
|
||
|
echo "0x00" > /proc/sys/diag
|