mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-11-17 02:57:56 +01:00
18 lines
203 B
Bash
Executable File
18 lines
203 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=18
|
|
LOGGER="logger -s -t autowifi -p 6"
|
|
|
|
boot() {
|
|
$LOGGER "dummy boot"
|
|
#/www/cgi-bin/wfcf op=auto
|
|
}
|
|
|
|
start() {
|
|
$LOGGER "dummy start"
|
|
}
|
|
|
|
stop() {
|
|
$LOGGER "dummy stop"
|
|
}
|