mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
|
|
boot() {
|
|
case $(board_name) in
|
|
huasifei,ws1208v2)
|
|
echo 1 > /sys/class/gpio/modem_reset/value
|
|
;;
|
|
esac
|
|
}
|