EVERYTHING FROM THE OTHER REPO

This commit is contained in:
2026-07-29 03:36:26 +03:00
parent 6777ea96db
commit 92a6ae42f5
4426 changed files with 1696506 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
# Set the cpu frequency governor and minimum and maximum frequencies
case "$1" in
start)
echo "interactive" > \
/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo "1938000" > \
/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo "312000" > \
/sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
;;
stop)
;;
*)
echo "Usage: $0 {start|stop}" >&2
exit 1
;;
esac