fbdcc34275
SVN-Revision: 155
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
# automagically run firstboot
|
|
[ -z "$FAILSAFE" ] && {
|
|
{ mount | grep jffs2 1>&-; } || firstboot
|
|
}
|
|
# set leds to normal state
|
|
echo "0x00" > /proc/sys/diag
|