2017-09-06 13:50:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "~> Installing thermald cpupower"
|
|
|
|
pacstrap /mnt thermald cpupower
|
|
|
|
echo " Setting 'ondemand' governor"
|
|
|
|
arch-chroot /mnt cpupower frequency-set -g ondemand
|
|
|
|
echo " Start cpupower on boot"
|
|
|
|
arch-chroot /mnt systemctl enable cpupower
|
2017-09-06 14:00:40 +00:00
|
|
|
|
|
|
|
amf_return=0
|