diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-11-18 20:29:07 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-12-13 23:08:02 -0800 |
commit | 53d3f1273983dfce2a907b39768978afe99aab1a (patch) | |
tree | 94280c154347b8b3e6cac64642ef55408873e9de /meta/classes/grub-efi.bbclass | |
parent | a9e072f9f0da774411e07abf47dd4bd8c6d685d7 (diff) | |
download | openembedded-core-53d3f1273983dfce2a907b39768978afe99aab1a.tar.gz openembedded-core-53d3f1273983dfce2a907b39768978afe99aab1a.tar.bz2 openembedded-core-53d3f1273983dfce2a907b39768978afe99aab1a.zip |
grub-efi: change to generate EFI image in target package
To generate the target EFI image in a native package, it requires
the host gcc have the ability to do -m32/-m64 compiling, but gcc
doesn't have that support on the 32bit version of some distributions
(e.g. rehl, suse), it would fail when build a 64bit target on these
32bit hosts.
In fact, all we need from grub-efi-native is the grub-mkimage binary,
so change the solution to:
* grub-efi-native only install grub-mkimage
* grub-efi compiles target modules, generates EFI image
with grub-mkimage and deploy, but install nothing.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/grub-efi.bbclass')
-rw-r--r-- | meta/classes/grub-efi.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass index 2f00901d04..71bd00fe99 100644 --- a/meta/classes/grub-efi.bbclass +++ b/meta/classes/grub-efi.bbclass @@ -15,8 +15,8 @@ # ${GRUB_OPTS} - additional options to add to the config, ';' delimited # (optional) # ${GRUB_TIMEOUT} - timeout before executing the deault label (optional) -do_bootimg[depends] += "grub-efi-${TRANSLATED_TARGET_ARCH}-native:do_deploy" -do_bootdirectdisk[depends] += "grub-efi-${TRANSLATED_TARGET_ARCH}-native:do_deploy" +do_bootimg[depends] += "grub-efi:do_deploy" +do_bootdirectdisk[depends] += "grub-efi:do_deploy" GRUB_SERIAL ?= "console=ttyS0,115200" GRUBCFG = "${S}/grub.cfg" |