From: Norbert Kaminski Date: Wed, 25 Nov 2020 17:22:49 +0000 (+0100) Subject: grub: Add support for RISC-V X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~9510 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42ea75d441ae38cdffed3b1cd671af886c19fbb6;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git grub: Add support for RISC-V This patch adds RISC-V to the COMPATIBLE_HOST. Since GRUB 2.04, the source code supports the RISC-V, thanks to Alexander Graf. Adding the GRUBPLATFORM for RISC-V prevents autoconf problems. Also, the patch appends the __anonymous method with RISC-V architecture. Signed-off-by: Norbert Kaminski Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-bsp/grub/grub-efi_2.04.bb b/meta/recipes-bsp/grub/grub-efi_2.04.bb index 30d95f95e01..f80afd95cba 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.04.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.04.bb @@ -26,6 +26,10 @@ python __anonymous () { grubtarget = 'arm64' elif re.match('arm', target): grubtarget = 'arm' + elif re.match('riscv64', target): + grubtarget = 'riscv64' + elif re.match('riscv32', target): + grubtarget = 'riscv32' else: raise bb.parse.SkipRecipe("grub-efi is incompatible with target %s" % target) grubimage = prefix + d.getVar("EFI_BOOT_IMAGE") diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index ff17dbe8b75..d0201036058 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++ b/meta/recipes-bsp/grub/grub2.inc @@ -33,7 +33,7 @@ SRC_URI[sha256sum] = "f10c85ae3e204dbaec39ae22fa3c5e99f0665417e91c2cb49b7e503165 DEPENDS = "flex-native bison-native gettext-native" -COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' +COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|riscv.*)-(linux.*|freebsd.*)' COMPATIBLE_HOST_armv7a = 'null' COMPATIBLE_HOST_armv7ve = 'null' @@ -42,6 +42,8 @@ COMPATIBLE_HOST_armv7ve = 'null' GRUBPLATFORM_arm = "efi" GRUBPLATFORM_aarch64 = "efi" +GRUBPLATFORM_riscv32 = "efi" +GRUBPLATFORM_riscv64 = "efi" GRUBPLATFORM ??= "pc" inherit autotools gettext texinfo pkgconfig