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:42 +0000 |
commit | 0e5f6e0f836e75837d8d8b6a6ab1ae7f35e7d74c (patch) | |
tree | e43d1c7d7fccfc2fa57b502b49b6674325829ecc /meta/recipes-bsp/gummiboot/gummiboot_git.bb | |
parent | e69f3081e9877352e11b862bf145e7bd21efe219 (diff) | |
download | poky-0e5f6e0f836e75837d8d8b6a6ab1ae7f35e7d74c.tar.gz |
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.
(From OE-Core rev: f1b23a32d0c823577cec532e3646c2f78e81ccda)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/gummiboot/gummiboot_git.bb')
-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}" | |||
13 | SRCREV = "4062c51075ba054d4949c714fe06123f9ad3097d" | 13 | SRCREV = "4062c51075ba054d4949c714fe06123f9ad3097d" |
14 | SRC_URI = "git://anongit.freedesktop.org/gummiboot" | 14 | SRC_URI = "git://anongit.freedesktop.org/gummiboot" |
15 | 15 | ||
16 | # Note: Add COMPATIBLE_HOST here is only because it depends on gnu-efi | ||
17 | # which has set the COMPATIBLE_HOST, the gummiboot itself may work on | ||
18 | # more hosts. | ||
19 | COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux" | ||
20 | |||
16 | S = "${WORKDIR}/git" | 21 | S = "${WORKDIR}/git" |
17 | 22 | ||
18 | EXTRA_OECONF = "--disable-manpages --with-efi-includedir=${STAGING_INCDIR} \ | 23 | EXTRA_OECONF = "--disable-manpages --with-efi-includedir=${STAGING_INCDIR} \ |