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:
Eelco Dolstra 2014-10-20 13:18:33 +02:00
parent a3b873924b
commit 38ed4d4d0f

View file

@ -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}
''