mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
kernel.i686-linux: disable bindnow hardening
This commit is contained in:
parent
8d4443a89a
commit
5ca99ae7a7
@ -225,7 +225,8 @@ stdenv.mkDerivation ((drvAttrs config stdenv.platform (kernelPatches ++ nativeKe
|
||||
nativeBuildInputs = [ perl bc nettools openssl ] ++ optional (stdenv.platform.uboot != null)
|
||||
(ubootChooser stdenv.platform.uboot);
|
||||
|
||||
hardeningDisable = [ "format" "fortify" "stackprotector" "pic" ];
|
||||
hardeningDisable = [ "format" "fortify" "stackprotector" "pic" ]
|
||||
++ stdenv.lib.optional stdenv.isi686 "bindnow";
|
||||
|
||||
makeFlags = commonMakeFlags ++ [
|
||||
"ARCH=${stdenv.platform.kernelArch}"
|
||||
|
Loading…
Reference in New Issue
Block a user