diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-14 17:40:34 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-14 17:40:34 (GMT) |
commit | d798f804fc80acf9c335614bce8147a4262cad49 (patch) | |
tree | 680838adba5357cd6f18778647fbf7338858281e /abs/extra-testing/acpid/handler.sh | |
parent | 3ac192cc25f9a6865566ced1c5a8372dbad665f3 (diff) | |
download | linhes_pkgbuild-d798f804fc80acf9c335614bce8147a4262cad49.zip linhes_pkgbuild-d798f804fc80acf9c335614bce8147a4262cad49.tar.gz linhes_pkgbuild-d798f804fc80acf9c335614bce8147a4262cad49.tar.bz2 |
Additional themes for MythTV. ACPID.
Diffstat (limited to 'abs/extra-testing/acpid/handler.sh')
-rw-r--r-- | abs/extra-testing/acpid/handler.sh | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/abs/extra-testing/acpid/handler.sh b/abs/extra-testing/acpid/handler.sh new file mode 100644 index 0000000..ad31d1a --- /dev/null +++ b/abs/extra-testing/acpid/handler.sh @@ -0,0 +1,65 @@ +#!/bin/sh +# Default acpi script that takes an entry for all actions + +# NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to +# modify it to not use /sys + +minspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq` +maxspeed=`cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq` +setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed" + +set $* + +case "$1" in + button/power) + #echo "PowerButton pressed!">/dev/tty5 + case "$2" in + PWRF) logger "PowerButton pressed: $2" ;; + *) logger "ACPI action undefined: $2" ;; + esac + ;; + button/sleep) + case "$2" in + SLPB) echo -n mem >/sys/power/state ;; + *) logger "ACPI action undefined: $2" ;; + esac + ;; + ac_adapter) + case "$2" in + AC) + case "$4" in + 00000000) + echo -n $minspeed >$setspeed + #/etc/laptop-mode/laptop-mode start + ;; + 00000001) + echo -n $maxspeed >$setspeed + #/etc/laptop-mode/laptop-mode stop + ;; + esac + ;; + *) logger "ACPI action undefined: $2" ;; + esac + ;; + battery) + case "$2" in + BAT0) + case "$4" in + 00000000) #echo "offline" >/dev/tty5 + ;; + 00000001) #echo "online" >/dev/tty5 + ;; + esac + ;; + CPU0) + ;; + *) logger "ACPI action undefined: $2" ;; + esac + ;; + button/lid) + #echo "LID switched!">/dev/tty5 + ;; + *) + logger "ACPI group/action undefined: $1 / $2" + ;; +esac |