mbakke pushed a commit to branch master
in repository guix.
commit d15972194aaef17fd1f7fd713d235c70794c9d4f
Author: Marius Bakke <[email protected]>
AuthorDate: Sat Jan 7 20:55:58 2023 +0100
gnu: ipxe: Enable syslinux only on i686-linux and x86_64-linux.
* gnu/packages/bootloaders.scm (ipxe)[native-inputs]: Conditionally add
SYSLINUX.
[arguments]: Adjust accordingly.
---
gnu/packages/bootloaders.scm | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 3dc5815898..caa8f0bb8d 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1555,10 +1555,12 @@ order to add a suitable bootloader menu entry.")
;; cdrtools' mkisofs will silently ignore a missing
isolinux.bin!
;; Luckily xorriso is more strict.
- (string-append "ISOLINUX_BIN=" syslinux
- "/share/syslinux/isolinux.bin")
- (string-append "SYSLINUX_MBR_DISK_PATH=" syslinux
- "/share/syslinux/isohdpfx.bin")
+ #$@(if (or (target-x86-64?) (target-x86?))
+ '((string-append "ISOLINUX_BIN=" syslinux
+ "/share/syslinux/isolinux.bin")
+ (string-append "SYSLINUX_MBR_DISK_PATH=" syslinux
+ "/share/syslinux/isohdpfx.bin"))
+ '())
;; Build reproducibly.
(string-append "BUILD_ID_CMD=echo -n " (build-id #$output))
@@ -1611,7 +1613,11 @@ order to add a suitable bootloader menu entry.")
(lambda _ (chdir ".."))))
#:tests? #f)) ; no test suite
(native-inputs
- (list perl syslinux xorriso))
+ (append (if (or (target-x86-64?) (target-x86?))
+ ;; Syslinux only supports i686 and x86_64.
+ (list syslinux)
+ '())
+ (list perl xorriso)))
(home-page "https://ipxe.org")
(synopsis "PXE-compliant network boot firmware")
(description "iPXE is a network boot firmware. It provides a full PXE