diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-03-27 14:13:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-27 15:44:16 +0000 |
commit | f1b23a32d0c823577cec532e3646c2f78e81ccda (patch) | |
tree | f20724e87e1b3da536ba1a4b72ebde1b3e75a2a9 /meta/recipes-bsp/gummiboot | |
parent | a18e4bef5f284c5b940007e60c7be28128a94c44 (diff) | |
download | openembedded-core-f1b23a32d0c823577cec532e3646c2f78e81ccda.tar.gz openembedded-core-f1b23a32d0c823577cec532e3646c2f78e81ccda.tar.bz2 openembedded-core-f1b23a32d0c823577cec532e3646c2f78e81ccda.zip |
gummiboot: add COMPATIBLE_HOST
The gummiboot depends on gnu-efi which had set:
COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux"
We also need set this for gummiboot, otherwise there would be build
failures for other non-x86 archs.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-bsp/gummiboot')
-rw-r--r-- | meta/recipes-bsp/gummiboot/gummiboot_git.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-bsp/gummiboot/gummiboot_git.bb b/meta/recipes-bsp/gummiboot/gummiboot_git.bb index 5868a23ae8..035cec163c 100644 --- a/meta/recipes-bsp/gummiboot/gummiboot_git.bb +++ b/meta/recipes-bsp/gummiboot/gummiboot_git.bb @@ -13,6 +13,11 @@ PV = "43+git${SRCPV}" SRCREV = "4062c51075ba054d4949c714fe06123f9ad3097d" SRC_URI = "git://anongit.freedesktop.org/gummiboot" +# Note: Add COMPATIBLE_HOST here is only because it depends on gnu-efi +# which has set the COMPATIBLE_HOST, the gummiboot itself may work on +# more hosts. +COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux" + S = "${WORKDIR}/git" EXTRA_OECONF = "--disable-manpages --with-efi-includedir=${STAGING_INCDIR} \ |