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