mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20: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:
@@ -77,7 +77,9 @@ the output filename. Otherwise, use defaults for the host platform."
|
|||||||
((string-prefix? "armhf" system)
|
((string-prefix? "armhf" system)
|
||||||
'("arm-efi" . "BOOTARM.EFI"))
|
'("arm-efi" . "BOOTARM.EFI"))
|
||||||
((string-prefix? "aarch64" system)
|
((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.
|
;; grub-mkstandalone requires a TMPDIR to prepare the firmware image.
|
||||||
(setenv "TMPDIR" esp)
|
(setenv "TMPDIR" esp)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user