diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-09-05 21:58:55 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-09-05 21:58:55 -0300 |
commit | 77c456461140eeabbf82c6aacf7c40a98939d8df (patch) | |
tree | 58288eb66b0e1b8a8dc6b459a4635af1000d89ce /libre/linux-libre-tools/cpupower.pmutils | |
parent | 4aea7e79b4621f6586add3f5ade140cb348e34b5 (diff) | |
download | abslibre-77c456461140eeabbf82c6aacf7c40a98939d8df.tar.gz abslibre-77c456461140eeabbf82c6aacf7c40a98939d8df.tar.bz2 abslibre-77c456461140eeabbf82c6aacf7c40a98939d8df.zip |
linux-libre-tools-3.5-5: updating revision due issue report => https://bugs.archlinux.org/task/31355
Diffstat (limited to 'libre/linux-libre-tools/cpupower.pmutils')
-rw-r--r-- | libre/linux-libre-tools/cpupower.pmutils | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/libre/linux-libre-tools/cpupower.pmutils b/libre/linux-libre-tools/cpupower.pmutils deleted file mode 100644 index fb93cd7c1..000000000 --- a/libre/linux-libre-tools/cpupower.pmutils +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -[[ -x /usr/bin/cpupower ]] || exit $NA - -CPUPOWER_GOVERNOR_AC=${CPUPOWER_GOVERNOR_AC:-ondemand} -CPUPOWER_GOVERNOR_BAT=${CPUPOWER_GOVERNOR_BAT:-conservative} - -help() { - cat <<EOF --------- -$0: Select cpupower frequency governor. - -Parameters: -CPUPOWER_GOVERNOR_AC = Governor to use on AC. -Defaults to ondemand. - -CPUPOWER_GOVERNOR_BAT = Governor to use on battery. -Defaults to conservative. - -EOF -} - -cpupow() { - printf 'Setting cpupower frequency governor to %s...' "$1" - cpupower -c all frequency-set -g "$1" -} - -case $1 in - true) cpupow "$CPUPOWER_GOVERNOR_BAT" ;; - false) cpupow "$CPUPOWER_GOVERNOR_AC" ;; - help) help;; - *) exit $NA ;; -esac - -exit 0 - -# vim:set ts=2 sw=2 ft=sh et: |