summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordoubleodoug <doubleodoug81@live.com>2015-09-09 22:00:26 -0400
committerSven Eden <yamakuzure@gmx.net>2017-03-29 10:45:09 +0200
commitbd582d06a27e3be6a07337138cc9fa3ccf743290 (patch)
tree6ced8d9b10939153843bf09e3e6a8ad7fb075aef /src
parent53fc6422895f73a8abc06a5b740354a0f1560b3a (diff)
login: support more than just power-gpio-key
Adding additional keys prevents this gpio-keys powerswitch from working, e.g. this wouldn't poweroff: button@23 { label = "power-switch"; linux,code = <116>; gpios = <&gpio 23 1>; }; button@25 { label = "KEY_A"; linux,code = <30>; gpios = <&gpio 25 1>; }; Changing ATTRS{keys}=="116" to ATTRS{keys}=="*116*" makes the power-switch and the A key both work properly. (David: rephrase and merge-commits)
Diffstat (limited to 'src')
-rw-r--r--src/login/70-power-switch.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/login/70-power-switch.rules b/src/login/70-power-switch.rules
index 36d2a3eb4..e2855b50f 100644
--- a/src/login/70-power-switch.rules
+++ b/src/login/70-power-switch.rules
@@ -13,6 +13,6 @@ SUBSYSTEM=="input", KERNEL=="event*", ATTRS{name}=="twl4030_pwrbutton", TAG+="po
SUBSYSTEM=="input", KERNEL=="event*", ATTRS{name}=="tps65217_pwr_but", TAG+="power-switch"
SUBSYSTEM=="input", KERNEL=="event*", ATTRS{name}=="* WMI hotkeys", TAG+="power-switch"
SUBSYSTEM=="input", KERNEL=="event*", \
- SUBSYSTEMS=="platform", DRIVERS=="gpio-keys", ATTRS{keys}=="116", TAG+="power-switch"
+ SUBSYSTEMS=="platform", DRIVERS=="gpio-keys", ATTRS{keys}=="*,116|116,*|116|*,116,*", TAG+="power-switch"
LABEL="power_switch_end"