uboot: add extraMakeFlags option

authored by Florian Klink and committed by Tuomas Tynkkynen 027d7bbb 1a1ade61

+2 -1
+2 -1
pkgs/misc/uboot/default.nix
··· 7 , filesToInstall 8 , installDir ? "$out" 9 , defconfig 10 , extraMeta ? {} 11 , ... } @ args: 12 stdenv.mkDerivation (rec { ··· 46 47 hardeningDisable = [ "all" ]; 48 49 - makeFlags = [ "DTC=dtc" ]; 50 51 configurePhase = '' 52 make ${defconfig}
··· 7 , filesToInstall 8 , installDir ? "$out" 9 , defconfig 10 + , extraMakeFlags ? [] 11 , extraMeta ? {} 12 , ... } @ args: 13 stdenv.mkDerivation (rec { ··· 47 48 hardeningDisable = [ "all" ]; 49 50 + makeFlags = [ "DTC=dtc" ] ++ extraMakeFlags; 51 52 configurePhase = '' 53 make ${defconfig}