archboot/usr/lib/initcpio/install/archboot_cpufreq

19 lines
410 B
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-02-22 23:46:50 +01:00
{
2023-02-17 21:37:58 +01:00
add_all_modules 'arch/x86/kernel/cpu/cpufreq|drivers/cpufreq'
2022-03-14 21:32:33 +01:00
map add_binary "cpupower" "cpufreq-bench_plot.sh"
2012-08-15 20:26:33 +02:00
add_file "/etc/cpufreq-bench.conf"
2007-02-22 23:46:50 +01:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes cpupower tools on an archboot image.
2007-02-22 23:46:50 +01:00
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: