archboot/usr/lib/initcpio/install/arch_cpufreq

21 lines
469 B
Text
Raw Normal View History

2012-05-26 12:07:05 +02:00
#!/bin/bash
2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-02-22 23:46:50 +01:00
{
2012-05-27 21:54:46 +02:00
add_checked_modules 'arch/x86/kernel/cpu/cpufreq|drivers/cpufreq'
2012-05-26 12:07:05 +02:00
apps="/usr/bin/cpufreq-info /usr/bin/cpufreq-set"
for i in $apps; do
add_binary "$i"
done
2008-12-06 19:12:19 +01:00
add_file "/usr/share/archboot/cpufreq/etc/conf.d/cpufreq" "/etc/conf.d/cpufreq"
2007-02-22 23:46:50 +01:00
add_file "/etc/rc.d/cpufreq"
}
help ()
{
cat<<HELPEOF
This hook includes cpufreq tools on an arch boot image.
HELPEOF
}