mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
linux: Enable FW_LOADER_USER_HELPER_FALLBACK
We don't really need this anymore, except that our docs say that you can put firmware in /root/test-firmware, which doesn't work via /sys/module/firmware_class/parameters/path.
This commit is contained in:
parent
a3b873924b
commit
38ed4d4d0f
@ -332,14 +332,20 @@ with stdenv.lib;
|
||||
TRANSPARENT_HUGEPAGE_ALWAYS? n
|
||||
TRANSPARENT_HUGEPAGE_MADVISE? y
|
||||
|
||||
# zram support (e.g for in-memory compressed swap)
|
||||
# zram support (e.g for in-memory compressed swap).
|
||||
${optionalString (versionAtLeast version "3.4") ''
|
||||
ZSMALLOC y
|
||||
''}
|
||||
ZRAM m
|
||||
|
||||
|
||||
${optionalString (versionAtLeast version "3.17") "NFC? n"}
|
||||
|
||||
# Enable firmware loading via udev. Only needed for non-declarative
|
||||
# firmware in /root/test-firmware.
|
||||
${optionalString (versionAtLeast version "3.17") ''
|
||||
FW_LOADER_USER_HELPER_FALLBACK y
|
||||
''}
|
||||
|
||||
${kernelPlatform.kernelExtraConfig or ""}
|
||||
${extraConfig}
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user