If this would help anyone i made a small script to decrease the power draw of the pinephone until it would be adjusted in th main repo....
#!/bin/bash
loadAVG=$(cat /proc/loadavg | awk '{print $1}')
threshold=1
highthreshold=3
status=$( echo "$loadAVG > $threshold" | bc )
highstatus=$( echo "$loadAVG > $highthreshold" | bc )
echo $status
if [ $status -gt 0 ]; then
if [ $highstatus -gt 0 ]; then
echo "performance" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
else
echo "ondemand" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
fi
else
echo "powersave" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
fi
I've placed it in crontab at adjust the governor every minute not ideal but it does help alittle...
(you do have to install 'bc' for it to work : sudo apt install bc
)