summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r--meta/recipes-bsp/grub/grub-efi_2.02.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi_2.02.bb b/meta/recipes-bsp/grub/grub-efi_2.02.bb
index 7bfc8eece4..14fce97ff0 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 () {
25 elif re.match('aarch64', target): 25 elif re.match('aarch64', target):
26 grubtarget = 'arm64' 26 grubtarget = 'arm64'
27 grubimage = prefix + "bootaa64.efi" 27 grubimage = prefix + "bootaa64.efi"
28 elif re.match('arm', target):
29 grubtarget = 'arm'
30 grubimage = prefix + "bootarm.efi"
28 else: 31 else:
29 raise bb.parse.SkipRecipe("grub-efi is incompatible with target %s" % target) 32 raise bb.parse.SkipRecipe("grub-efi is incompatible with target %s" % target)
30 d.setVar("GRUB_TARGET", grubtarget) 33 d.setVar("GRUB_TARGET", grubtarget)