mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-14 08:02:16 +00:00
15 lines
208 B
Bash
Executable File
15 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set_gpio() {
|
|
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
|
|
sleep 1
|
|
}
|
|
|
|
if [ "$1" = "atbm603x-ssc335-tapo-c110" ]; then
|
|
set_gpio 16 1
|
|
modprobe atbm603x_wifi_usb
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|