commit: 9b6cd0ec46203b4940587ad077f40e504c6e0836
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 15 14:26:01 2025 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Mar 15 14:26:01 2025 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=9b6cd0ec
Enable riscv64 efi installation
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
targets/support/qcow2-grub-install.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/targets/support/qcow2-grub-install.sh
b/targets/support/qcow2-grub-install.sh
index c480da7b..4806be06 100755
--- a/targets/support/qcow2-grub-install.sh
+++ b/targets/support/qcow2-grub-install.sh
@@ -23,4 +23,8 @@ case ${clst_hostarch} in
echo "Installing grub with target arm64-efi"
grub-install --no-floppy --efi-directory=/boot --removable
--skip-fs-probe --no-nvram --no-bootsector --target=arm64-efi
;;
+ riscv)
+ echo "Installing grub with target riscv64-efi"
+ grub-install --no-floppy --efi-directory=/boot --removable
--skip-fs-probe --no-nvram --no-bootsector --target=riscv64-efi
+ ;;
esac