linux.configfile: remove unused kernelTarget attr

As far as I can tell this is unused since f95d214cfd.

Fixes: f95d214cfd ("Implement generic kernel build via manual-config")
Fixes: https://github.com/NixOS/nixpkgs/issues/234084
This commit is contained in:
Alyssa Ross 2023-05-25 22:40:08 +00:00
parent e97d10016c
commit 01b3642589

View File

@ -130,8 +130,6 @@ let
# e.g. "defconfig"
kernelBaseConfig = if defconfig != null then defconfig else stdenv.hostPlatform.linux-kernel.baseConfig or "defconfig";
# e.g. "bzImage"
kernelTarget = stdenv.hostPlatform.linux-kernel.target or "vmlinux";
makeFlags = lib.optionals (stdenv.hostPlatform.linux-kernel ? makeFlags) stdenv.hostPlatform.linux-kernel.makeFlags
++ extraMakeFlags;