archboot/usr/lib/initcpio/install/archboot_cpufreq
Tobias Powalowski 7206f7c7f8 change message
2021-10-04 11:13:50 +02:00

17 lines
361 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
add_checked_modules 'arch/x86/kernel/cpu/cpufreq|drivers/cpufreq'
add_binary "cpupower"
add_file "/usr/bin/cpufreq-bench_plot.sh"
add_file "/etc/cpufreq-bench.conf"
}
help ()
{
cat<<HELPEOF
This hook includes cpupower tools on an archboot image.
HELPEOF
}