mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-13 15:42:20 +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
|
|
}
|
|
|
|
# Generic RTL8188FU
|
|
if [ "$1" = "rtl8188fu-generic" ]; then
|
|
modprobe 8188fu
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|