1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

build: bootloader: Add riscv64 case.

* gnu/build/bootloader.scm (install-efi): Add riscv64 case.

Change-Id: I1c6c7949f0057f600817f09b5f52dca0644e3d88
This commit is contained in:
Zheng Junjie
2025-04-05 23:03:09 +08:00
parent 0770929dde
commit 43d30332bf

View File

@@ -77,7 +77,9 @@ the output filename. Otherwise, use defaults for the host platform."
((string-prefix? "armhf" system)
'("arm-efi" . "BOOTARM.EFI"))
((string-prefix? "aarch64" system)
'("arm64-efi" . "BOOTAA64.EFI"))))))
'("arm64-efi" . "BOOTAA64.EFI"))
((string-prefix? "riscv64" system)
'("riscv64-efi" . "BOOTRISCV64.EFI"))))))
;; grub-mkstandalone requires a TMPDIR to prepare the firmware image.
(setenv "TMPDIR" esp)