Fix filenames to be consistent

This commit is contained in:
2025-01-09 19:31:25 +00:00
parent 128566e079
commit b0d2d11d46
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/sh
set_gpio() {
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
sleep 1
}
# SSC335 Tapo C310
if [ "$1" = "rtl8192eu-ssc335-tapo-c310" ]; then
set_gpio 16 1
modprobe 8192eu
exit 0
fi
exit 1