2022-07-19 20:28:45 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, unstableGitUpdater, buildPackages
|
2022-04-09 08:13:28 +00:00
|
|
|
, gnu-efi, mtools, openssl, perl, xorriso, xz
|
2021-05-25 18:10:54 +00:00
|
|
|
, syslinux ? null
|
2018-02-10 01:43:57 +00:00
|
|
|
, embedScript ? null
|
2019-07-15 14:36:09 +00:00
|
|
|
, additionalTargets ? {}
|
2022-08-25 13:41:24 +00:00
|
|
|
, additionalOptions ? []
|
2018-02-10 01:43:57 +00:00
|
|
|
}:
|
2014-12-02 06:06:10 +00:00
|
|
|
|
|
|
|
let
|
2019-07-15 14:36:09 +00:00
|
|
|
targets = additionalTargets // lib.optionalAttrs stdenv.isx86_64 {
|
|
|
|
"bin-x86_64-efi/ipxe.efi" = null;
|
|
|
|
"bin-x86_64-efi/ipxe.efirom" = null;
|
|
|
|
"bin-x86_64-efi/ipxe.usb" = "ipxe-efi.usb";
|
2021-11-21 01:50:41 +00:00
|
|
|
} // lib.optionalAttrs stdenv.hostPlatform.isx86 {
|
2019-07-15 14:36:09 +00:00
|
|
|
"bin/ipxe.dsk" = null;
|
|
|
|
"bin/ipxe.usb" = null;
|
|
|
|
"bin/ipxe.iso" = null;
|
|
|
|
"bin/ipxe.lkrn" = null;
|
|
|
|
"bin/undionly.kpxe" = null;
|
2021-05-25 18:10:54 +00:00
|
|
|
} // lib.optionalAttrs stdenv.isAarch32 {
|
|
|
|
"bin-arm32-efi/ipxe.efi" = null;
|
|
|
|
"bin-arm32-efi/ipxe.efirom" = null;
|
|
|
|
"bin-arm32-efi/ipxe.usb" = "ipxe-efi.usb";
|
|
|
|
} // lib.optionalAttrs stdenv.isAarch64 {
|
|
|
|
"bin-arm64-efi/ipxe.efi" = null;
|
|
|
|
"bin-arm64-efi/ipxe.efirom" = null;
|
|
|
|
"bin-arm64-efi/ipxe.usb" = "ipxe-efi.usb";
|
2019-07-15 14:36:09 +00:00
|
|
|
};
|
2014-12-02 06:06:10 +00:00
|
|
|
in
|
|
|
|
|
2020-01-22 09:20:35 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ipxe";
|
2023-08-03 22:10:03 +00:00
|
|
|
version = "unstable-2023-07-19";
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2022-04-09 08:13:28 +00:00
|
|
|
nativeBuildInputs = [ gnu-efi mtools openssl perl xorriso xz ] ++ lib.optional stdenv.hostPlatform.isx86 syslinux;
|
2022-07-19 20:28:45 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2020-01-22 09:20:35 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ipxe";
|
|
|
|
repo = "ipxe";
|
2023-08-03 22:10:03 +00:00
|
|
|
rev = "c1834f323f4f6b9b46cd5895b1457a117381363f";
|
|
|
|
hash = "sha256-fJeDgm+OaItshWFliq08Y0BPDD2FCkezeEp7trqWNjA=";
|
2014-12-02 06:06:10 +00:00
|
|
|
};
|
|
|
|
|
2022-05-20 17:02:48 +00:00
|
|
|
postPatch = lib.optionalString stdenv.hostPlatform.isAarch64 ''
|
|
|
|
substituteInPlace src/util/genfsimg --replace " syslinux " " true "
|
|
|
|
''; # calling syslinux on a FAT image isn't going to work
|
|
|
|
|
2016-02-22 00:44:58 +00:00
|
|
|
# not possible due to assembler code
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" ];
|
2016-02-22 00:44:58 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error";
|
2016-03-19 18:50:36 +00:00
|
|
|
|
2014-12-02 06:06:10 +00:00
|
|
|
makeFlags =
|
|
|
|
[ "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo" # No /bin/echo here.
|
2022-07-19 20:28:45 +00:00
|
|
|
"CROSS=${stdenv.cc.targetPrefix}"
|
2018-02-10 01:43:57 +00:00
|
|
|
] ++ lib.optional (embedScript != null) "EMBED=${embedScript}";
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
|
2019-07-15 14:37:30 +00:00
|
|
|
enabledOptions = [
|
|
|
|
"PING_CMD"
|
|
|
|
"IMAGE_TRUST_CMD"
|
|
|
|
"DOWNLOAD_PROTO_HTTP"
|
|
|
|
"DOWNLOAD_PROTO_HTTPS"
|
2022-08-25 13:41:24 +00:00
|
|
|
] ++ additionalOptions;
|
2016-10-18 05:18:52 +00:00
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
configurePhase = ''
|
2016-10-18 05:18:52 +00:00
|
|
|
runHook preConfigure
|
2021-09-13 01:03:07 +00:00
|
|
|
for opt in ${lib.escapeShellArgs enabledOptions}; do echo "#define $opt" >> src/config/general.h; done
|
2019-03-07 15:11:54 +00:00
|
|
|
substituteInPlace src/Makefile.housekeeping --replace '/bin/echo' echo
|
2022-04-09 08:13:28 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isx86 ''
|
|
|
|
substituteInPlace src/util/genfsimg --replace /usr/lib/syslinux ${syslinux}/share/syslinux
|
|
|
|
'' + ''
|
2016-10-18 05:18:52 +00:00
|
|
|
runHook postConfigure
|
2016-09-25 02:35:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = "cd src";
|
|
|
|
|
2019-07-15 14:36:09 +00:00
|
|
|
buildFlags = lib.attrNames targets;
|
2019-03-07 15:11:54 +00:00
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
installPhase = ''
|
2021-07-14 09:46:41 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2016-09-25 02:35:46 +00:00
|
|
|
mkdir -p $out
|
2019-07-15 14:36:09 +00:00
|
|
|
${lib.concatStringsSep "\n" (lib.mapAttrsToList (from: to:
|
|
|
|
if to == null
|
|
|
|
then "cp -v ${from} $out"
|
|
|
|
else "cp -v ${from} $out/${to}") targets)}
|
2017-09-24 13:08:23 +00:00
|
|
|
|
|
|
|
# Some PXE constellations especially with dnsmasq are looking for the file with .0 ending
|
|
|
|
# let's provide it as a symlink to be compatible in this case.
|
|
|
|
ln -s undionly.kpxe $out/undionly.kpxe.0
|
2021-07-14 09:46:41 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2016-09-25 02:35:46 +00:00
|
|
|
'';
|
2014-12-02 06:06:10 +00:00
|
|
|
|
2018-02-10 01:43:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-04-09 08:13:28 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater {};
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
meta = with lib;
|
2014-12-02 06:06:10 +00:00
|
|
|
{ description = "Network boot firmware";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://ipxe.org/";
|
2021-07-14 09:46:41 +00:00
|
|
|
license = licenses.gpl2Only;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2021-05-25 18:10:54 +00:00
|
|
|
platforms = platforms.linux;
|
2014-12-02 06:06:10 +00:00
|
|
|
};
|
|
|
|
}
|