Hello community, here is the log from the commit of package upower for openSUSE:Factory checked in at 2018-11-06 14:06:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/upower (Old) and /work/SRC/openSUSE:Factory/.upower.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "upower" Tue Nov 6 14:06:44 2018 rev:64 rq:644279 version:0.99.8 Changes: -------- --- /work/SRC/openSUSE:Factory/upower/upower.changes 2018-08-28 09:19:12.335840203 +0200 +++ /work/SRC/openSUSE:Factory/.upower.new/upower.changes 2018-11-06 14:07:33.811203469 +0100 @@ -1,0 +2,8 @@ +Tue Oct 23 18:52:28 UTC 2018 - [email protected] + +- Add upower-fix-keyboard-backlight.patch: daemon: Fix upower's + keyboard backlight support. Disabling kernel tunables blocked us + from accessing /sys, meaning we couldn't change keyboard + backlight levels. + +------------------------------------------------------------------- New: ---- upower-fix-keyboard-backlight.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ upower.spec ++++++ --- /var/tmp/diff_new_pack.BQeTx8/_old 2018-11-06 14:07:34.879202067 +0100 +++ /var/tmp/diff_new_pack.BQeTx8/_new 2018-11-06 14:07:34.883202062 +0100 @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -34,6 +34,8 @@ Patch0: upower-hibernate-insteadof-hybridsleep.patch # PATCH-FIX-UPSTREAM upower-remove-privatenetwork.patch -- Remove PrivateNetwork=true from upower.service Patch1: upower-remove-privatenetwork.patch +# PATCH-FIX-UPSTREAM upower-fix-keyboard-backlight.patch -- daemon: Fix upower's keyboard backlight support +Patch2: upower-fix-keyboard-backlight.patch BuildRequires: gobject-introspection-devel >= 0.9.9 BuildRequires: gtk-doc >= 1.11 ++++++ upower-fix-keyboard-backlight.patch ++++++ >From 0a9d9ab4949effb20e77aa52e7b4ee07e776fc0d Mon Sep 17 00:00:00 2001 From: Bastien Nocera <[email protected]> Date: Tue, 4 Sep 2018 09:58:21 +0200 Subject: [PATCH] daemon: Fix upower's keyboard backlight support Disabling kernel tunables blocked us from accessing /sys, meaning we couldn't change keyboard backlight levels. Closes: #73 --- src/upower.service.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/upower.service.in b/src/upower.service.in index 8838655..4566ad3 100644 --- a/src/upower.service.in +++ b/src/upower.service.in @@ -10,7 +10,8 @@ Restart=on-failure # Filesystem lockdown ProtectSystem=strict -ProtectKernelTunables=true +# Needed by keyboard backlight support +ProtectKernelTunables=false ProtectControlGroups=true ReadWritePaths=@historydir@ ProtectHome=true -- 2.18.1
