Skip to content

Commit 3a84a11

Browse files
committed
bump to 6.17.7-ba02
1 parent 369d348 commit 3a84a11

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

kernel.spec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ Summary: The Linux kernel
176176
%define specrpmversion 6.17.7
177177
%define specversion 6.17.7
178178
%define patchversion 6.17
179-
%define pkgrelease ba01
179+
%define pkgrelease ba02
180180
%define kversion 6
181181
%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
185-
%define specrelease ba01%{?buildid}%{?dist}
185+
%define specrelease ba02%{?buildid}%{?dist}
186186
# This defines the kabi tarball version
187187
%define kabiversion 6.17.7
188188

@@ -4536,7 +4536,8 @@ fi\
45364536
#
45374537
#
45384538
%changelog
4539-
* Sun Nov 02 2025 Antheas Kapenekakis <[email protected]> [6.17.7-ba01]
4539+
* Mon Nov 03 2025 Antheas Kapenekakis <[email protected]> [6.17.7-ba02]
4540+
- ALSA: hda/realtek: Add ASUS GA403W quirk (Antheas Kapenekakis)
45404541
- platform/x86: asus-wmi: Don't reset charge threshold on boot (Antheas Kapenekakis)
45414542
- ALSA: hda/realtek: Add match for ASUS Xbox Ally projects (Antheas Kapenekakis)
45424543
- ALSA: hda/tas2781: fix speaker id retrieval for multiple probes (Antheas Kapenekakis)

patch-2-handheld.patch

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52330,3 +52330,35 @@ index 0d1c07226c7b..4bd3b90e4273 100644
5233052330
--
5233152331
2.51.2
5233252332

52333+
52334+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
52335+
From: Antheas Kapenekakis <[email protected]>
52336+
Date: Mon, 3 Nov 2025 16:25:17 +0100
52337+
Subject: ALSA: hda/realtek: Add ASUS GA403W quirk
52338+
52339+
The ASUS GA403W laptop uses the Realtek ALC287 codec with a CS35L41
52340+
amplifier connected via I2C. Without this quirk, the amp is not
52341+
controlled using the main speaker output volume, resulting in
52342+
low sound output.
52343+
52344+
Closes: https://github.com/ublue-os/bazzite/issues/3388
52345+
Signed-off-by: Antheas Kapenekakis <[email protected]>
52346+
---
52347+
sound/hda/codecs/realtek/alc269.c | 1 +
52348+
1 file changed, 1 insertion(+)
52349+
52350+
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
52351+
index 1cc063bf6c0b..a3479f12dfa3 100644
52352+
--- a/sound/hda/codecs/realtek/alc269.c
52353+
+++ b/sound/hda/codecs/realtek/alc269.c
52354+
@@ -6730,6 +6730,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
52355+
SND_PCI_QUIRK(0x103c, 0x8e60, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2),
52356+
SND_PCI_QUIRK(0x103c, 0x8e61, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2),
52357+
SND_PCI_QUIRK(0x103c, 0x8e62, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2),
52358+
+ SND_PCI_QUIRK(0x1043, 0x1024, "ASUS GA403W", ALC287_FIXUP_CS35L41_I2C_2),
52359+
SND_PCI_QUIRK(0x1043, 0x1032, "ASUS VivoBook X513EA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
52360+
SND_PCI_QUIRK(0x1043, 0x1034, "ASUS GU605C", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1),
52361+
SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
52362+
--
52363+
2.51.2
52364+

0 commit comments

Comments
 (0)