add autonight to x-06s

This commit is contained in:
cronyx
2024-02-09 21:03:55 +03:00
parent c7469a89a7
commit 4bb69d527a
3 changed files with 2047 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -91,7 +91,7 @@ BR2_PACKAGE_OPUS_OPENIPC_FIXED_POINT=y
BR2_PACKAGE_VTUND_OPENIPC=y
BR2_PACKAGE_YAML_CLI=y
BR2_PACKAGE_QUIRC_OPENIPC=y
# BR2_PACKAGE_AUTONIGHT is not set
BR2_PACKAGE_AUTONIGHT=y
# WiFi
BR2_PACKAGE_WIRELESS_TOOLS=y
@@ -106,7 +106,7 @@ BR2_PACKAGE_WIREGUARD_LINUX_COMPAT=y
BR2_PACKAGE_WIREGUARD_TOOLS=y
# DEBUG
# BR2_PACKAGE_INGENIC_PWM is not set
BR2_PACKAGE_INGENIC_PWM=y
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
# BR2_PACKAGE_HOST_GDB is not set
# BR2_PACKAGE_GDB is not set

View File

@@ -0,0 +1,14 @@
#!/bin/sh
case "$1" in
start)
autonight -d 3
;;
stop)
kill -9 $(pidof autonight)
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac