diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-25 11:31:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-26 13:09:09 +0000 |
commit | 8146e929e2643afad18da09b4f1b16b894503674 (patch) | |
tree | 5be1352754f44c5b72fb0794dee21d9a295a6640 /meta/recipes-bsp/grub | |
parent | be821416fe0f092c90feeda7e008452af46fc6c7 (diff) | |
download | poky-8146e929e2643afad18da09b4f1b16b894503674.tar.gz |
classes/recipes: Convert SkipPackage -> SkipRecipe
The new name is much more consistent with what this actually means. We put
the pieces in place to rename everything a while back but looks like we
forgot to actually do it! Fix that now.
(From OE-Core rev: af9612f5d6b848fceea22d10ee964437299be776)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub')
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi_2.02.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi_2.02.bb b/meta/recipes-bsp/grub/grub-efi_2.02.bb index 112a99dcfb..a72b189bc3 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.02.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.02.bb | |||
@@ -22,7 +22,7 @@ python __anonymous () { | |||
22 | grubtarget = 'i386' | 22 | grubtarget = 'i386' |
23 | grubimage = "grub-efi-bootia32.efi" | 23 | grubimage = "grub-efi-bootia32.efi" |
24 | else: | 24 | else: |
25 | raise bb.parse.SkipPackage("grub-efi is incompatible with target %s" % target) | 25 | raise bb.parse.SkipRecipe("grub-efi is incompatible with target %s" % target) |
26 | d.setVar("GRUB_TARGET", grubtarget) | 26 | d.setVar("GRUB_TARGET", grubtarget) |
27 | d.setVar("GRUB_IMAGE", grubimage) | 27 | d.setVar("GRUB_IMAGE", grubimage) |
28 | } | 28 | } |