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
|