[oe-commits] [openembedded-core] 16/22: grub-efi: Provide target architecture for 32-bit ARM.

git at git.openembedded.org git at git.openembedded.org
Thu Jul 12 20:07:18 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 4d440d5faa05d3f9062089d137d1003ef97d23b1
Author: Kristian Amlie <kristian.amlie at northern.tech>
AuthorDate: Tue Jul 10 16:07:12 2018 +0200

    grub-efi: Provide target architecture for 32-bit ARM.
    
    Signed-off-by: Kristian Amlie <kristian.amlie at northern.tech>
    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 7bfc8ee..14fce97 100644
--- a/meta/recipes-bsp/grub/grub-efi_2.02.bb
+++ b/meta/recipes-bsp/grub/grub-efi_2.02.bb
@@ -25,6 +25,9 @@ python __anonymous () {
     elif re.match('aarch64', target):
         grubtarget = 'arm64'
         grubimage = prefix + "bootaa64.efi"
+    elif re.match('arm', target):
+        grubtarget = 'arm'
+        grubimage = prefix + "bootarm.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