summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/gummiboot
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/gummiboot')
-rw-r--r--meta/recipes-bsp/gummiboot/gummiboot/fix-objcopy.patch39
-rw-r--r--meta/recipes-bsp/gummiboot/gummiboot_git.bb34
2 files changed, 73 insertions, 0 deletions
diff --git a/meta/recipes-bsp/gummiboot/gummiboot/fix-objcopy.patch b/meta/recipes-bsp/gummiboot/gummiboot/fix-objcopy.patch
new file mode 100644
index 0000000000..2683f835e9
--- /dev/null
+++ b/meta/recipes-bsp/gummiboot/gummiboot/fix-objcopy.patch
@@ -0,0 +1,39 @@
1From 0f7f9e3bb1d0e1b93f3ad8a1d5d7bdd3fbf27494 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Thu, 27 Mar 2014 07:20:33 +0000
4Subject: [PATCH] Makefile.am: use objcopy from the env
5
6It uses the "objcopy" directly, which is not suitable for cross compile.
7
8Upstream-Status: Pending
9
10Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
11---
12 Makefile.am | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15diff --git a/Makefile.am b/Makefile.am
16index d224418..dcd95b0 100644
17--- a/Makefile.am
18+++ b/Makefile.am
19@@ -19,6 +19,8 @@
20 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
21 AM_MAKEFLAGS = --no-print-directory
22
23+OBJCOPY ?= objcopy
24+
25 gummibootlibdir = $(prefix)/lib/gummiboot
26
27 AM_CPPFLAGS = -include config.h
28@@ -143,7 +145,7 @@ $(efi_solib): $(efi_objects)
29 .DELETE_ON_ERROR: $(efi_solib)
30
31 $(efi_loadername): $(efi_solib)
32- $(AM_V_GEN) objcopy -j .text -j .sdata -j .data -j .dynamic \
33+ $(AM_V_GEN) $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic \
34 -j .dynsym -j .rel -j .rela -j .reloc -j .eh_frame \
35 --target=efi-app-$(ARCH) $< $@
36
37--
381.8.3.4
39
diff --git a/meta/recipes-bsp/gummiboot/gummiboot_git.bb b/meta/recipes-bsp/gummiboot/gummiboot_git.bb
new file mode 100644
index 0000000000..80df2b6ae3
--- /dev/null
+++ b/meta/recipes-bsp/gummiboot/gummiboot_git.bb
@@ -0,0 +1,34 @@
1SUMMARY = "Gummiboot is a simple UEFI boot manager which executes configured EFI images."
2HOMEPAGE = "http://freedesktop.org/wiki/Software/gummiboot"
3
4LICENSE = "LGPLv2.1"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=4fbd65380cdd255951079008b364516c"
6
7DEPENDS = "gnu-efi util-linux"
8
9inherit autotools
10inherit deploy
11
12PV = "43+git${SRCPV}"
13SRCREV = "4062c51075ba054d4949c714fe06123f9ad3097d"
14SRC_URI = "git://anongit.freedesktop.org/gummiboot \
15 file://fix-objcopy.patch \
16 "
17
18# Note: Add COMPATIBLE_HOST here is only because it depends on gnu-efi
19# which has set the COMPATIBLE_HOST, the gummiboot itself may work on
20# more hosts.
21COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux"
22
23S = "${WORKDIR}/git"
24
25EXTRA_OECONF = "--disable-manpages --with-efi-includedir=${STAGING_INCDIR} \
26 --with-efi-ldsdir=${STAGING_LIBDIR} \
27 --with-efi-libdir=${STAGING_LIBDIR}"
28
29EXTRA_OEMAKE += "gummibootlibdir=${libdir}/gummiboot"
30
31do_deploy () {
32 install ${B}/gummiboot*.efi ${DEPLOYDIR}
33}
34addtask deploy before do_build after do_compile