[oe-commits] [openembedded-core] 46/73: grub-efi: add grub target and image for aarch64

git at git.openembedded.org git at git.openembedded.org
Thu May 3 13:00:22 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 1c82fccac1b3648823afecffcbc54284ab0a89d8
Author: Ricardo Salveti <ricardo at opensourcefoundries.com>
AuthorDate: Tue Apr 17 21:30:12 2018 -0300

    grub-efi: add grub target and image for aarch64
    
    Add missing target and image for aarch64, as the current revision is
    already fully compatible with ARMv8.
    
    Signed-off-by: Ricardo Salveti <ricardo at opensourcefoundries.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-bsp/grub/grub-efi_2.02.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-bsp/grub/grub-efi_2.02.bb b/meta/recipes-bsp/grub/grub-efi_2.02.bb
index ed27b90..7bfc8ee 100644
--- a/meta/recipes-bsp/grub/grub-efi_2.02.bb
+++ b/meta/recipes-bsp/grub/grub-efi_2.02.bb
@@ -22,6 +22,9 @@ python __anonymous () {
     elif re.match('i.86', target):
         grubtarget = 'i386'
         grubimage = prefix + "bootia32.efi"
+    elif re.match('aarch64', target):
+        grubtarget = 'arm64'
+        grubimage = prefix + "bootaa64.efi"
     else:
         raise bb.parse.SkipRecipe("grub-efi is incompatible with target %s" % target)
     d.setVar("GRUB_TARGET", grubtarget)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list