ipxe: do not call syslinux on aarch64

+4
+4
pkgs/tools/misc/ipxe/default.nix
··· 40 sha256 = "SrTNEYk13JXAcJuogm9fZ7CrzJIDRc0aziGdjRNv96I="; 41 }; 42 43 # not possible due to assembler code 44 hardeningDisable = [ "pic" "stackprotector" ]; 45
··· 40 sha256 = "SrTNEYk13JXAcJuogm9fZ7CrzJIDRc0aziGdjRNv96I="; 41 }; 42 43 + postPatch = lib.optionalString stdenv.hostPlatform.isAarch64 '' 44 + substituteInPlace src/util/genfsimg --replace " syslinux " " true " 45 + ''; # calling syslinux on a FAT image isn't going to work 46 + 47 # not possible due to assembler code 48 hardeningDisable = [ "pic" "stackprotector" ]; 49