ipxe: format with nixfmt-rfc-style
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
parent
d09dbe2d7f
commit
0ed7e74523
@ -1,41 +1,63 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, unstableGitUpdater, buildPackages
|
{
|
||||||
, gnu-efi, mtools, openssl, perl, xorriso, xz
|
stdenv,
|
||||||
, syslinux ? null
|
lib,
|
||||||
, embedScript ? null
|
fetchFromGitHub,
|
||||||
, additionalTargets ? {}
|
unstableGitUpdater,
|
||||||
, additionalOptions ? []
|
buildPackages,
|
||||||
|
gnu-efi,
|
||||||
|
mtools,
|
||||||
|
openssl,
|
||||||
|
perl,
|
||||||
|
xorriso,
|
||||||
|
xz,
|
||||||
|
syslinux ? null,
|
||||||
|
embedScript ? null,
|
||||||
|
additionalTargets ? { },
|
||||||
|
additionalOptions ? [ ],
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
targets = additionalTargets // lib.optionalAttrs stdenv.isx86_64 {
|
targets =
|
||||||
"bin-x86_64-efi/ipxe.efi" = null;
|
additionalTargets
|
||||||
"bin-x86_64-efi/ipxe.efirom" = null;
|
// lib.optionalAttrs stdenv.isx86_64 {
|
||||||
"bin-x86_64-efi/ipxe.usb" = "ipxe-efi.usb";
|
"bin-x86_64-efi/ipxe.efi" = null;
|
||||||
"bin-x86_64-efi/snp.efi" = null;
|
"bin-x86_64-efi/ipxe.efirom" = null;
|
||||||
} // lib.optionalAttrs stdenv.hostPlatform.isx86 {
|
"bin-x86_64-efi/ipxe.usb" = "ipxe-efi.usb";
|
||||||
"bin/ipxe.dsk" = null;
|
"bin-x86_64-efi/snp.efi" = null;
|
||||||
"bin/ipxe.usb" = null;
|
}
|
||||||
"bin/ipxe.iso" = null;
|
// lib.optionalAttrs stdenv.hostPlatform.isx86 {
|
||||||
"bin/ipxe.lkrn" = null;
|
"bin/ipxe.dsk" = null;
|
||||||
"bin/undionly.kpxe" = null;
|
"bin/ipxe.usb" = null;
|
||||||
} // lib.optionalAttrs stdenv.isAarch32 {
|
"bin/ipxe.iso" = null;
|
||||||
"bin-arm32-efi/ipxe.efi" = null;
|
"bin/ipxe.lkrn" = null;
|
||||||
"bin-arm32-efi/ipxe.efirom" = null;
|
"bin/undionly.kpxe" = null;
|
||||||
"bin-arm32-efi/ipxe.usb" = "ipxe-efi.usb";
|
}
|
||||||
"bin-arm32-efi/snp.efi" = null;
|
// lib.optionalAttrs stdenv.isAarch32 {
|
||||||
} // lib.optionalAttrs stdenv.isAarch64 {
|
"bin-arm32-efi/ipxe.efi" = null;
|
||||||
"bin-arm64-efi/ipxe.efi" = null;
|
"bin-arm32-efi/ipxe.efirom" = null;
|
||||||
"bin-arm64-efi/ipxe.efirom" = null;
|
"bin-arm32-efi/ipxe.usb" = "ipxe-efi.usb";
|
||||||
"bin-arm64-efi/ipxe.usb" = "ipxe-efi.usb";
|
"bin-arm32-efi/snp.efi" = null;
|
||||||
"bin-arm64-efi/snp.efi" = null;
|
}
|
||||||
};
|
// lib.optionalAttrs stdenv.isAarch64 {
|
||||||
|
"bin-arm64-efi/ipxe.efi" = null;
|
||||||
|
"bin-arm64-efi/ipxe.efirom" = null;
|
||||||
|
"bin-arm64-efi/ipxe.usb" = "ipxe-efi.usb";
|
||||||
|
"bin-arm64-efi/snp.efi" = null;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ipxe";
|
pname = "ipxe";
|
||||||
version = "1.21.1-unstable-2024-08-15";
|
version = "1.21.1-unstable-2024-08-15";
|
||||||
|
|
||||||
nativeBuildInputs = [ gnu-efi mtools openssl perl xorriso xz ] ++ lib.optional stdenv.hostPlatform.isx86 syslinux;
|
nativeBuildInputs = [
|
||||||
|
gnu-efi
|
||||||
|
mtools
|
||||||
|
openssl
|
||||||
|
perl
|
||||||
|
xorriso
|
||||||
|
xz
|
||||||
|
] ++ lib.optional stdenv.hostPlatform.isx86 syslinux;
|
||||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
@ -52,15 +74,18 @@ stdenv.mkDerivation rec {
|
|||||||
''; # calling syslinux on a FAT image isn't going to work
|
''; # calling syslinux on a FAT image isn't going to work
|
||||||
|
|
||||||
# not possible due to assembler code
|
# not possible due to assembler code
|
||||||
hardeningDisable = [ "pic" "stackprotector" ];
|
hardeningDisable = [
|
||||||
|
"pic"
|
||||||
|
"stackprotector"
|
||||||
|
];
|
||||||
|
|
||||||
env.NIX_CFLAGS_COMPILE = "-Wno-error";
|
env.NIX_CFLAGS_COMPILE = "-Wno-error";
|
||||||
|
|
||||||
makeFlags =
|
makeFlags = [
|
||||||
[ "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo" # No /bin/echo here.
|
"ECHO_E_BIN_ECHO=echo"
|
||||||
"CROSS=${stdenv.cc.targetPrefix}"
|
"ECHO_E_BIN_ECHO_E=echo" # No /bin/echo here.
|
||||||
] ++ lib.optional (embedScript != null) "EMBED=${embedScript}";
|
"CROSS=${stdenv.cc.targetPrefix}"
|
||||||
|
] ++ lib.optional (embedScript != null) "EMBED=${embedScript}";
|
||||||
|
|
||||||
enabledOptions = [
|
enabledOptions = [
|
||||||
"PING_CMD"
|
"PING_CMD"
|
||||||
@ -69,15 +94,18 @@ stdenv.mkDerivation rec {
|
|||||||
"DOWNLOAD_PROTO_HTTPS"
|
"DOWNLOAD_PROTO_HTTPS"
|
||||||
] ++ additionalOptions;
|
] ++ additionalOptions;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase =
|
||||||
runHook preConfigure
|
''
|
||||||
for opt in ${lib.escapeShellArgs enabledOptions}; do echo "#define $opt" >> src/config/general.h; done
|
runHook preConfigure
|
||||||
substituteInPlace src/Makefile.housekeeping --replace '/bin/echo' echo
|
for opt in ${lib.escapeShellArgs enabledOptions}; do echo "#define $opt" >> src/config/general.h; done
|
||||||
'' + lib.optionalString stdenv.hostPlatform.isx86 ''
|
substituteInPlace src/Makefile.housekeeping --replace '/bin/echo' echo
|
||||||
substituteInPlace src/util/genfsimg --replace /usr/lib/syslinux ${syslinux}/share/syslinux
|
''
|
||||||
'' + ''
|
+ lib.optionalString stdenv.hostPlatform.isx86 ''
|
||||||
runHook postConfigure
|
substituteInPlace src/util/genfsimg --replace /usr/lib/syslinux ${syslinux}/share/syslinux
|
||||||
'';
|
''
|
||||||
|
+ ''
|
||||||
|
runHook postConfigure
|
||||||
|
'';
|
||||||
|
|
||||||
preBuild = "cd src";
|
preBuild = "cd src";
|
||||||
|
|
||||||
@ -87,10 +115,11 @@ stdenv.mkDerivation rec {
|
|||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
${lib.concatStringsSep "\n" (lib.mapAttrsToList (from: to:
|
${lib.concatStringsSep "\n" (
|
||||||
if to == null
|
lib.mapAttrsToList (
|
||||||
then "cp -v ${from} $out"
|
from: to: if to == null then "cp -v ${from} $out" else "cp -v ${from} $out/${to}"
|
||||||
else "cp -v ${from} $out/${to}") targets)}
|
) targets
|
||||||
|
)}
|
||||||
|
|
||||||
# Some PXE constellations especially with dnsmasq are looking for the file with .0 ending
|
# 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.
|
# let's provide it as a symlink to be compatible in this case.
|
||||||
@ -105,10 +134,10 @@ stdenv.mkDerivation rec {
|
|||||||
tagPrefix = "v";
|
tagPrefix = "v";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib;
|
meta = with lib; {
|
||||||
{ description = "Network boot firmware";
|
description = "Network boot firmware";
|
||||||
homepage = "https://ipxe.org/";
|
homepage = "https://ipxe.org/";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user