Skip to content

Commit 369d348

Browse files
committed
bump to 6.17.7-ba01
1 parent bce89e5 commit 369d348

File tree

4 files changed

+50
-6
lines changed

4 files changed

+50
-6
lines changed

kernel.changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Sun Nov 02 2025 Justin M. Forbes <[email protected]> [6.17.7-0]
2+
- Linux v6.17.7
3+
Resolves:
4+
15
* Wed Oct 29 2025 Augusto Caringi <[email protected]> [6.17.6-0]
26
- Linux v6.17.6
37
Resolves:

kernel.spec

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,18 +173,18 @@ Summary: The Linux kernel
173173
# the --with-release option overrides this setting.)
174174
%define debugbuildsenabled 1
175175
# define buildid .local
176-
%define specrpmversion 6.17.6
177-
%define specversion 6.17.6
176+
%define specrpmversion 6.17.7
177+
%define specversion 6.17.7
178178
%define patchversion 6.17
179179
%define pkgrelease ba01
180180
%define kversion 6
181-
%define tarfile_release 6.17.6
181+
%define tarfile_release 6.17.7
182182
# This is needed to do merge window version magic
183183
%define patchlevel 17
184184
# This allows pkg_release to have configurable %%{?dist} tag
185185
%define specrelease ba01%{?buildid}%{?dist}
186186
# This defines the kabi tarball version
187-
%define kabiversion 6.17.6
187+
%define kabiversion 6.17.7
188188

189189
# If this variable is set to 1, a bpf selftests build failure will cause a
190190
# fatal kernel package build error
@@ -4536,7 +4536,8 @@ fi\
45364536
#
45374537
#
45384538
%changelog
4539-
* Sun Nov 02 2025 Antheas Kapenekakis <[email protected]> [6.17.6-ba01]
4539+
* Sun Nov 02 2025 Antheas Kapenekakis <[email protected]> [6.17.7-ba01]
4540+
- platform/x86: asus-wmi: Don't reset charge threshold on boot (Antheas Kapenekakis)
45404541
- ALSA: hda/realtek: Add match for ASUS Xbox Ally projects (Antheas Kapenekakis)
45414542
- ALSA: hda/tas2781: fix speaker id retrieval for multiple probes (Antheas Kapenekakis)
45424543
- drm/amdgpu/smu: Handle S0ix for vangogh (Alex Deucher)
@@ -4768,6 +4769,9 @@ fi\
47684769
- scsi: sd: remove unused warning inherited from fedora (Antheas Kapenekakis)
47694770
- [NA] add dev tools (Antheas Kapenekakis)
47704771

4772+
* Sun Nov 02 2025 Justin M. Forbes <[email protected]> [6.17.7-0]
4773+
- Linux v6.17.7
4774+
47714775
* Wed Oct 29 2025 Augusto Caringi <[email protected]> [6.17.6-0]
47724776
- Linux v6.17.6
47734777

patch-1-redhat.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ index 97d958c945e4..c7e27e2edfe4 100644
126126
M: David E. Box <[email protected]>
127127
S: Supported
128128
diff --git a/Makefile b/Makefile
129-
index d090c7c253e8..9786a0f63329 100644
129+
index 570042d208fd..7c4032f58786 100644
130130
--- a/Makefile
131131
+++ b/Makefile
132132
@@ -355,6 +355,17 @@ ifneq ($(filter install,$(MAKECMDGOALS)),)

patch-2-handheld.patch

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52294,3 +52294,39 @@ index 7870d1cb570c..1cc063bf6c0b 100644
5229452294
--
5229552295
2.51.2
5229652296

52297+
52298+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
52299+
From: Antheas Kapenekakis <[email protected]>
52300+
Date: Sun, 2 Nov 2025 16:58:58 +0100
52301+
Subject: platform/x86: asus-wmi: Don't reset charge threshold on boot
52302+
52303+
Currently, the driver resets the charge threshold to 100% on every boot.
52304+
This is because the driver cannot read the current threshold from the
52305+
EC. The EC is perfectly capable of storing it across reboots.
52306+
52307+
This causes e.g., Powerdevil, to think the charge limit is 100% on boot
52308+
and for users to have to set it every time. Just skip setting it on boot
52309+
even if this causes userspace to drift.
52310+
52311+
Fixes: 7973353e92ee ("platform/x86: asus-wmi: Refactor charge threshold to use the battery hooking API")
52312+
Signed-off-by: Antheas Kapenekakis <[email protected]>
52313+
---
52314+
drivers/platform/x86/asus-wmi.c | 2 +-
52315+
1 file changed, 1 insertion(+), 1 deletion(-)
52316+
52317+
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
52318+
index 0d1c07226c7b..4bd3b90e4273 100644
52319+
--- a/drivers/platform/x86/asus-wmi.c
52320+
+++ b/drivers/platform/x86/asus-wmi.c
52321+
@@ -1469,7 +1469,7 @@ static int asus_wmi_battery_add(struct power_supply *battery, struct acpi_batter
52322+
* and we can't get the current threshold so let set it to 100% when
52323+
* a battery is added.
52324+
*/
52325+
- asus_wmi_set_devstate(ASUS_WMI_DEVID_RSOC, 100, NULL);
52326+
+ // asus_wmi_set_devstate(ASUS_WMI_DEVID_RSOC, 100, NULL);
52327+
charge_end_threshold = 100;
52328+
52329+
return 0;
52330+
--
52331+
2.51.2
52332+

0 commit comments

Comments
 (0)