Merge pull request #244447 from amjoseph-nixpkgs/pr/fix/restore-ability-to-build-kernel-without-modules
linuxManualConfig: restore functionality of isModular and buildDTBs
This commit is contained in:
commit
42fcf0878a
1 changed files with 4 additions and 1 deletions
|
@ -232,7 +232,10 @@ stdenv.mkDerivation ({
|
|||
# replicated here to apply to older versions.
|
||||
# Makes __FILE__ relative to the build directory.
|
||||
"KCPPFLAGS=-fmacro-prefix-map=$(sourceRoot)/="
|
||||
] ++ extraMakeFlags;
|
||||
kernelConf.target
|
||||
] ++ optional isModular "modules"
|
||||
++ optional buildDTBs "dtbs"
|
||||
++ extraMakeFlags;
|
||||
|
||||
installFlags = [
|
||||
"INSTALL_PATH=$(out)"
|
||||
|
|
Loading…
Reference in a new issue