12 lines
131 B
Bash
Executable File
12 lines
131 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
boot() {
|
|
case "$(board_name)" in
|
|
ariaboard,photonicat)
|
|
( sleep 15s; wifi; ) &
|
|
;;
|
|
esac
|
|
}
|