Print some debugging information at the beginning

Signed-off-by: Tyler Nijmeh <tylernij@gmail.com>
latency
Tyler Nijmeh 4 years ago
parent e933beb5fe
commit 7bd8bb5706

@ -67,6 +67,24 @@ write() {
echo "[*] $1: $curval --> $2"
}
# Print device information prior to execution
echo "[*] ----- Device Information -----"
# Kernel and device information
uname -a
# Scheduler feature check
[[ -f "/sys/kernel/debug/sched_features" ]] && echo "[*] Scheduler features exposed."
# CPU boost check
[[ -d "/sys/module/cpu_boost" ]] && echo "[*] CAF CPU boost detected."
# Stune check
[[ -d "/dev/stune" ]] && echo "[*] Schedtune is available."
# ZRAM support state
[[ -d "/sys/block/zram0" ]] && echo "[*] ZRAM supported."
echo "[*] ------------------------------"
# Wait 60s into boot before applying changes
echo "[*] Waiting for 60s of uptime."
while [[ `cat /proc/uptime | awk '{print $1}' | awk -F. '{print $1}'` -lt 60 ]]

Loading…
Cancel
Save