kernel: Fix missing config options from platform

common-config.nix has:

${kernelPlatform.kernelExtraConfig or ""}

and indeed kernelExtraConfig is in hostPlatform.platform, and not in
hostPlatform. (Ugh.).
This commit is contained in:
Tuomas Tynkkynen 2018-02-02 18:13:41 +02:00
parent 5e8ae8d597
commit 685ceb999e

View file

@ -46,7 +46,7 @@ let
config = import ./common-config.nix {
inherit stdenv version extraConfig;
kernelPlatform = hostPlatform;
kernelPlatform = hostPlatform.platform;
features = kernelFeatures; # Ensure we know of all extra patches, etc.
};