diff options
author | Nicolas Maupu <nmaupu@gmail.com> | 2025-05-03 01:46:41 +0200 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-05-08 22:39:57 +0800 |
commit | 4363f769e49a89f10e70d6dd9365633ec05c5fe2 (patch) | |
tree | 4d8c6f8479820389754f522acadb1acd1416cf4f | |
parent | c4497b715608464199db10e26a86fe72918a7691 (diff) |
nongnu: linux: Fix missing module for Lunar Lake platform.
* nongnu/packages/linux.scm (nonguix-extra-linux-options): Add two kernel
configs to include latest Lunar Lake audio chipset (RT1318/RT713).
Fixes: https://gitlab.com/nonguix/nonguix/-/issues/390
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | nongnu/packages/linux.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nongnu/packages/linux.scm b/nongnu/packages/linux.scm index a6ec98b7..d5add5bc 100644 --- a/nongnu/packages/linux.scm +++ b/nongnu/packages/linux.scm @@ -88,7 +88,11 @@ some freedo package or an output of package-version procedure." ;; actual. '( ;; Driver for MediaTek mt7921e wireless chipset - ("5.15" . "CONFIG_MT7921E=m"))))) + ("5.15" . "CONFIG_MT7921E=m") + ;; Activate driver module for RT1318/RT713 (Lunar Lake) + ;; Builds module named snd_soc_sof_sdw.ko + ("6.12" . "CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y") + ("6.12" . "CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m"))))) (define* (corrupt-linux freedo #:key |