diff options
author | Nicolas Maupu <nmaupu@gmail.com> | 2025-05-03 01:46:41 +0200 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-05-15 21:22:42 +0800 |
commit | 74455cdbb8cd3273fba9c65236328f6e1442c2f5 (patch) | |
tree | e4e20db6e006d2eae5f2b5b6c96a56d18b34ffb5 /nongnu | |
parent | f9fedea132fc146c0ad692deb1f3d840acc4a967 (diff) |
Reapply "nongnu: linux: Fix missing module for Lunar Lake platform."
This reapplies commit 4363f769e49a89f10e70d6dd9365633ec05c5fe2.
* 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>
Diffstat (limited to 'nongnu')
-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 4390e68..8f7e4f3 100644 --- a/nongnu/packages/linux.scm +++ b/nongnu/packages/linux.scm @@ -92,7 +92,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 |