summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/gummiboot/gummiboot_git.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-09-09 08:24:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-23 09:53:01 +0100
commitcdfd96eb92415a1b3eaf603ffc4a35978985ade4 (patch)
treea587c2edd202ae5270bd481aa278deb19289e14c /meta/recipes-bsp/gummiboot/gummiboot_git.bb
parent01416520c37f219e3c3f4abfd6f69a5563325568 (diff)
downloadpoky-cdfd96eb92415a1b3eaf603ffc4a35978985ade4.tar.gz
gummiboot: Fix build warnings seen with gcc5
gummiboot uses -mno-sse so we should disble using sse for mfpmath as well Fix syntax errors in struct defines (From OE-Core rev: 2593dc1936d7e477769753b8c8f97b988ecc8823) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.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.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-bsp/gummiboot/gummiboot_git.bb b/meta/recipes-bsp/gummiboot/gummiboot_git.bb
index 91c3db9306..376ab542dd 100644
--- a/meta/recipes-bsp/gummiboot/gummiboot_git.bb
+++ b/meta/recipes-bsp/gummiboot/gummiboot_git.bb
@@ -13,6 +13,7 @@ PV = "48+git${SRCPV}"
13SRCREV = "2bcd919c681c952eb867ef1bdb458f1bc49c2d55" 13SRCREV = "2bcd919c681c952eb867ef1bdb458f1bc49c2d55"
14SRC_URI = "git://anongit.freedesktop.org/gummiboot \ 14SRC_URI = "git://anongit.freedesktop.org/gummiboot \
15 file://fix-objcopy.patch \ 15 file://fix-objcopy.patch \
16 file://0001-console-Fix-C-syntax-errors-for-function-declaration.patch \
16 " 17 "
17 18
18# Note: Add COMPATIBLE_HOST here is only because it depends on gnu-efi 19# Note: Add COMPATIBLE_HOST here is only because it depends on gnu-efi
@@ -28,6 +29,8 @@ EXTRA_OECONF = "--disable-manpages --with-efi-includedir=${STAGING_INCDIR} \
28 29
29EXTRA_OEMAKE += "gummibootlibdir=${libdir}/gummiboot" 30EXTRA_OEMAKE += "gummibootlibdir=${libdir}/gummiboot"
30 31
32TUNE_CCARGS_remove = "-mfpmath=sse"
33
31do_deploy () { 34do_deploy () {
32 install ${B}/gummiboot*.efi ${DEPLOYDIR} 35 install ${B}/gummiboot*.efi ${DEPLOYDIR}
33} 36}