forked from pool/systemd
58624a23ff
- Update to release 202: + 'systemctl list-jobs' got some polishing. '--type=' argument may now be passed more than once. 'systemctl list-sockets' has been added. + systemd gained a new unit 'systemd-static-nodes.service' that generates static device nodes earlier during boot, and can run in conjunction with udev. + systemd-nspawn now places all containers in the new /machine top-level cgroup directory in the name=systemd hierarchy. + bootchart can now store its data in the journal. + journactl can now take multiple --unit= and --user-unit= switches. + The cryptsetup logic now understands the "luks.key=" kernel command line switch. If a configured key file is missing, it will fallback to prompting the user. - Rebase some patches - Update handle-SYSTEMCTL_OPTIONS-environment-variable.patch to properly handle SYSTEMCTL_OPTIONS - Fix regression in the default for tmp auto-deletion (systemd-tmp-safe-defaults.patch, FATE#314974). - Add chromebook lid switch as a power switch to logind rule to enable suspend on lid close - Update to release 202: + 'systemctl list-jobs' got some polishing. '--type=' argument may now be passed more than once. 'systemctl list-sockets' has been added. + systemd gained a new unit 'systemd-static-nodes.service' OBS-URL: https://build.opensuse.org/request/show/172582 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=365
21 lines
763 B
Diff
21 lines
763 B
Diff
From: Robert Schweikert <rjschwei@suse.com>
|
|
Date: Fri, 12 Apr 2013 12:08:16 -0400
|
|
Subject: rules: add lid switch of ARM based Chromebook as a power switch to
|
|
logind
|
|
|
|
---
|
|
src/login/70-power-switch.rules | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/login/70-power-switch.rules b/src/login/70-power-switch.rules
|
|
index 36fb827..d925ab7 100644
|
|
--- a/src/login/70-power-switch.rules
|
|
+++ b/src/login/70-power-switch.rules
|
|
@@ -9,5 +9,6 @@ ACTION=="remove", GOTO="power_switch_end"
|
|
|
|
SUBSYSTEM=="input", KERNEL=="event*", SUBSYSTEMS=="acpi", TAG+="power-switch"
|
|
SUBSYSTEM=="input", KERNEL=="event*", KERNELS=="thinkpad_acpi", TAG+="power-switch"
|
|
+SUBSYSTEM=="input", KERNEL=="event*", KERNELS=="gpio-keys.8", TAG+="power-switch"
|
|
|
|
LABEL="power_switch_end"
|