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-07-28 15:16:32 -07:00
committed by Adam Joseph
parent b34c60cf8c
commit 47a130b085
@@ -131,8 +131,6 @@ let
platformName = stdenv.hostPlatform.linux-kernel.name;
# e.g. "defconfig"
kernelBaseConfig = if defconfig != null then defconfig else stdenv.hostPlatform.linux-kernel.baseConfig;
# e.g. "bzImage"
kernelTarget = stdenv.hostPlatform.linux-kernel.target;
makeFlags = lib.optionals (stdenv.hostPlatform.linux-kernel ? makeFlags) stdenv.hostPlatform.linux-kernel.makeFlags
++ extraMakeFlags;