on_ac_power: Fix AC adapter presence recognition
On several machines, a file corresponding to AC adapter can be named ADP1. The on_ac_power script checked for AC*, which does not match ADP1, so the script always considered the adapter to be off. X-Gentoo-Bug: 380933 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=380933
This commit is contained in:
parent
5b1aaf8cc8
commit
260b61e9d8
@ -3,14 +3,14 @@
|
|||||||
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
||||||
|
|
||||||
# Exit 0 if on AC power, 1 if not and 255 if we don't know how to work it out
|
# Exit 0 if on AC power, 1 if not and 255 if we don't know how to work it out
|
||||||
if [ -f /proc/acpi/ac_adapter/AC*/state ]; then
|
if [ -f /proc/acpi/ac_adapter/*/state ]; then
|
||||||
cat /proc/acpi/ac_adapter/AC*/state | while read line; do
|
cat /proc/acpi/ac_adapter/*/state | while read line; do
|
||||||
case "$line" in
|
case "$line" in
|
||||||
"state:"*"off-line") exit 128;;
|
"state:"*"off-line") exit 128;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
elif [ -f /sys/class/power_supply/AC*/online ]; then
|
elif [ -f /sys/class/power_supply/*/online ]; then
|
||||||
cat /sys/class/power_supply/AC*/online | while read line; do
|
cat /sys/class/power_supply/*/online | while read line; do
|
||||||
[ "${line}" = 0 ] && exit 128
|
[ "${line}" = 0 ] && exit 128
|
||||||
done
|
done
|
||||||
elif [ -f /proc/pmu/info ]; then
|
elif [ -f /proc/pmu/info ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user