mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-24 23:39:29 +00:00
14 lines
185 B
Bash
Executable File
14 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set_gpio() {
|
|
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
|
|
sleep 1
|
|
}
|
|
|
|
if [ "$1" = "rtl8192eu-ssc325-tapo-c310v1" ]; then
|
|
modprobe 8192eu
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|