mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-13 15:42:20 +00:00
13 lines
199 B
Bash
Executable File
13 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set_gpio() {
|
|
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
|
|
sleep 1
|
|
}
|
|
|
|
if [ "$1" = "atbm603x_wifi_usb" ]; then
|
|
set_gpio 51 0
|
|
modprobe atbm603x_wifi_usb
|
|
exit 0
|
|
fi
|