* [PATCH 0/1] gnu-efi: upgrade to 3.0.1 @ 2015-01-12 0:06 Robert Yang 2015-01-12 0:06 ` [PATCH 1/1] " Robert Yang 0 siblings, 1 reply; 4+ messages in thread From: Robert Yang @ 2015-01-12 0:06 UTC (permalink / raw) To: openembedded-core The following changes since commit b61a2acc321489c3427f0afa3059486dc144a13b: bind: Update libxml2 check to make it deterministic. (2015-01-08 09:21:18 +0000) are available in the git repository at: git://git.openembedded.org/openembedded-core-contrib rbt/gnu-efi http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/gnu-efi Robert Yang (1): gnu-efi: upgrade to 3.0.1 meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb | 41 +++++++++++++++++++++++++++++ meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb | 33 ----------------------- 2 files changed, 41 insertions(+), 33 deletions(-) create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb delete mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb -- 1.7.9.5 ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] gnu-efi: upgrade to 3.0.1 2015-01-12 0:06 [PATCH 0/1] gnu-efi: upgrade to 3.0.1 Robert Yang @ 2015-01-12 0:06 ` Robert Yang 2015-01-12 17:48 ` Burton, Ross 0 siblings, 1 reply; 4+ messages in thread From: Robert Yang @ 2015-01-12 0:06 UTC (permalink / raw) To: openembedded-core * Use the official src rather than debian. * It doesn't have a general license file, the license is embedded in the files, which are GPLv2+ & BSD. * Supported aarch64 and arm. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb | 41 +++++++++++++++++++++++++++++ meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb | 33 ----------------------- 2 files changed, 41 insertions(+), 33 deletions(-) create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb delete mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb new file mode 100644 index 0000000..9a9c143 --- /dev/null +++ b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb @@ -0,0 +1,41 @@ +SUMMARY = "Libraries for producing EFI binaries" +HOMEPAGE = "http://sourceforge.net/projects/gnu-efi/" +SECTION = "devel" +LICENSE = "GPLv2+ & BSD" +LIC_FILES_CHKSUM = "file://gnuefi/crt0-efi-arm.S;beginline=4;endline=9;md5=2240d7bbdf0928294c2f4a68b14d6591 \ + file://gnuefi/crt0-efi-aarch64.S;beginline=4;endline=16;md5=e582764a4776e60c95bf9ab617343d36 \ + file://inc/efishellintf.h;beginline=13;endline=20;md5=202766b79d708eff3cc70fce15fb80c7 \ + file://inc/efishellparm.h;beginline=4;endline=11;md5=468b1231b05bbc84bae3a0d5774e3bb5 \ + file://lib/arm/div64.S;beginline=6;endline=12;md5=a96c84f5ad12b4f011f98b5d039242f2 \ + file://lib/arm/math.c;beginline=4;endline=10;md5=64dd1987cee1dcf59d11aa572cfa644e \ + file://lib/arm/initplat.c;beginline=4;endline=10;md5=64dd1987cee1dcf59d11aa572cfa644e \ + file://lib/arm/lib1funcs.S;beginline=9;endline=33;md5=f56d5ebbc87136bc66cfe24db82bcf01 \ + file://lib/aarch64/math.c;beginline=9;endline=33;md5=cfade4c560e033a7bb02dab282872c7d \ + file://lib/aarch64/initplat.c;beginline=9;endline=33;md5=900cb1ffbe3e1ded344102be921830f1 \ + " + +SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \ + file://parallel-make.patch \ + file://parallel-make-archives.patch \ + " +SRC_URI[md5sum] = "c4099c443b6b0c2b04dedc33e7814ec0" +SRC_URI[sha256sum] = "e2e8d5940347eebfb00eaaeef107a8ba59e7838e40bc716c74d9a36fff648f1f" + +COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" + +def gnu_efi_arch(d): + import re + tarch = d.getVar("TARGET_ARCH", True) + if re.match("i[3456789]86", tarch): + return "ia32" + return tarch + +EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ + 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' 'PREFIX=${prefix}' 'LIBDIR=${libdir}' \ + " + +do_install() { + oe_runmake install INSTALLROOT="${D}" +} + +FILES_${PN} += "${libdir}/*.lds" diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb deleted file mode 100644 index dbf2a07..0000000 --- a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "Libraries for producing EFI binaries" -HOMEPAGE = "http://sourceforge.net/projects/gnu-efi/" -SECTION = "devel" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://debian/copyright;md5=5fb358a180f484b285b0d99acdc29666" - -SRC_URI = "http://downloads.sourceforge.net/gnu-efi/gnu-efi_3.0u.orig.tar.gz \ - file://parallel-make.patch \ - file://parallel-make-archives.patch \ - " -SRC_URI[md5sum] = "d15d3c700e79a1e2938544d73edc572d" -SRC_URI[sha256sum] = "3c0d450d5829204ca05dcb3b2aae772e52c379b7c7e09146759c6315606f934e" - -COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux" - -S = "${WORKDIR}/gnu-efi-3.0" - -def gnu_efi_arch(d): - import re - tarch = d.getVar("TARGET_ARCH", True) - if re.match("i[3456789]86", tarch): - return "ia32" - return tarch - -EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ - 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' 'PREFIX=${prefix}' 'LIBDIR=${libdir}' \ - " - -do_install() { - oe_runmake install INSTALLROOT="${D}" -} - -FILES_${PN} += "${libdir}/*.lds" -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] gnu-efi: upgrade to 3.0.1 2015-01-12 0:06 ` [PATCH 1/1] " Robert Yang @ 2015-01-12 17:48 ` Burton, Ross 2015-01-13 8:30 ` Robert Yang 0 siblings, 1 reply; 4+ messages in thread From: Burton, Ross @ 2015-01-12 17:48 UTC (permalink / raw) To: Robert Yang; +Cc: OE-core [-- Attachment #1: Type: text/plain, Size: 603 bytes --] On 12 January 2015 at 00:06, Robert Yang <liezhi.yang@windriver.com> wrote: > * Use the official src rather than debian. > * It doesn't have a general license file, the license is embedded in the > files, which are GPLv2+ & BSD. > * Supported aarch64 and arm. > > Signed-off-by: Robert Yang <liezhi.yang@windriver.com> > Both you and Saul have submitted this upgrade, but they're both different: Saul drops patches that don't need to be applied anymore, and Robert changes the COMPATIBLE_HOST assignment. Can one of you create a One Upgrade To Rule Them All and re-submit? :) Ross [-- Attachment #2: Type: text/html, Size: 1086 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] gnu-efi: upgrade to 3.0.1 2015-01-12 17:48 ` Burton, Ross @ 2015-01-13 8:30 ` Robert Yang 0 siblings, 0 replies; 4+ messages in thread From: Robert Yang @ 2015-01-13 8:30 UTC (permalink / raw) To: Burton, Ross; +Cc: OE-core On 01/13/2015 01:48 AM, Burton, Ross wrote: > On 12 January 2015 at 00:06, Robert Yang <liezhi.yang@windriver.com > <mailto:liezhi.yang@windriver.com>> wrote: > > * Use the official src rather than debian. > * It doesn't have a general license file, the license is embedded in the > files, which are GPLv2+ & BSD. > * Supported aarch64 and arm. > > Signed-off-by: Robert Yang <liezhi.yang@windriver.com > <mailto:liezhi.yang@windriver.com>> > > > Both you and Saul have submitted this upgrade, but they're both different: Saul > drops patches that don't need to be applied anymore, and Robert changes the > COMPATIBLE_HOST assignment. Can one of you create a One Upgrade To Rule Them > All and re-submit? :) Thanks, I took Saul's part and updated in the PULL: git://git.openembedded.org/openembedded-core-contrib rbt/gnu-efi http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/gnu-efi Robert Yang (1): gnu-efi: upgrade to 3.0.1 From 7a3e85cafad74e9bdcfae6171abaf745b642de3e Mon Sep 17 00:00:00 2001 From: Robert Yang <liezhi.yang@windriver.com> Date: Wed, 7 Jan 2015 16:01:46 -0800 Subject: [PATCH] gnu-efi: upgrade to 3.0.1 * Use the official src rather than debian. * It doesn't have a general license file, the license is embedded in the files, which are "GPLv2+ | BSD-2-Clause". * Supported aarch64 and arm. * Remove parallel-make.patch that was accepted upstream. (From Saul) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- .../gnu-efi/gnu-efi/parallel-make.patch | 22 ----------- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb | 40 ++++++++++++++++++++ meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb | 33 ---------------- 3 files changed, 40 insertions(+), 55 deletions(-) delete mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make.patch create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb delete mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make.patch b/meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make.patch deleted file mode 100644 index 27c94e8..0000000 --- a/meta/recipes-bsp/gnu-efi/gnu-efi/parallel-make.patch +++ /dev/null @@ -1,22 +0,0 @@ -Fix parallel make failure - -Upstream-Status: Submitted [Maintainer directly] - -Add a missing dependency which resulted in a race leading to failure -on larger values of -j. - -Signed-off-by: Darren Hart <dvhart@linux.intel.com> - -Index: gnu-efi-3.0/Makefile -=================================================================== ---- gnu-efi-3.0.orig/Makefile -+++ gnu-efi-3.0/Makefile -@@ -42,6 +42,8 @@ include $(SRCDIR)/Make.defaults - - SUBDIRS = lib gnuefi inc apps - -+gnuefi: lib -+ - all: check_gcc $(SUBDIRS) - - $(SUBDIRS): diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb new file mode 100644 index 0000000..ad7f2e3 --- /dev/null +++ b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.1.bb @@ -0,0 +1,40 @@ +SUMMARY = "Libraries for producing EFI binaries" +HOMEPAGE = "http://sourceforge.net/projects/gnu-efi/" +SECTION = "devel" +LICENSE = "GPLv2+ | BSD-2-Clause" +LIC_FILES_CHKSUM = "file://gnuefi/crt0-efi-arm.S;beginline=4;endline=9;md5=2240d7bbdf0928294c2f4a68b14d6591 \ + file://gnuefi/crt0-efi-aarch64.S;beginline=4;endline=16;md5=e582764a4776e60c95bf9ab617343d36 \ + file://inc/efishellintf.h;beginline=13;endline=20;md5=202766b79d708eff3cc70fce15fb80c7 \ + file://inc/efishellparm.h;beginline=4;endline=11;md5=468b1231b05bbc84bae3a0d5774e3bb5 \ + file://lib/arm/div64.S;beginline=6;endline=12;md5=a96c84f5ad12b4f011f98b5d039242f2 \ + file://lib/arm/math.c;beginline=4;endline=10;md5=64dd1987cee1dcf59d11aa572cfa644e \ + file://lib/arm/initplat.c;beginline=4;endline=10;md5=64dd1987cee1dcf59d11aa572cfa644e \ + file://lib/arm/lib1funcs.S;beginline=9;endline=33;md5=f56d5ebbc87136bc66cfe24db82bcf01 \ + file://lib/aarch64/math.c;beginline=9;endline=33;md5=cfade4c560e033a7bb02dab282872c7d \ + file://lib/aarch64/initplat.c;beginline=9;endline=33;md5=900cb1ffbe3e1ded344102be921830f1 \ + " + +SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.bz2 \ + file://parallel-make-archives.patch \ + " +SRC_URI[md5sum] = "c4099c443b6b0c2b04dedc33e7814ec0" +SRC_URI[sha256sum] = "e2e8d5940347eebfb00eaaeef107a8ba59e7838e40bc716c74d9a36fff648f1f" + +COMPATIBLE_HOST = "(x86_64.*|i.86.*|aarch64.*|arm.*)-linux" + +def gnu_efi_arch(d): + import re + tarch = d.getVar("TARGET_ARCH", True) + if re.match("i[3456789]86", tarch): + return "ia32" + return tarch + +EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ + 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' 'PREFIX=${prefix}' 'LIBDIR=${libdir}' \ + " + +do_install() { + oe_runmake install INSTALLROOT="${D}" +} + +FILES_${PN} += "${libdir}/*.lds" diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb deleted file mode 100644 index dbf2a07..0000000 --- a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0u.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "Libraries for producing EFI binaries" -HOMEPAGE = "http://sourceforge.net/projects/gnu-efi/" -SECTION = "devel" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://debian/copyright;md5=5fb358a180f484b285b0d99acdc29666" - -SRC_URI = "http://downloads.sourceforge.net/gnu-efi/gnu-efi_3.0u.orig.tar.gz \ - file://parallel-make.patch \ - file://parallel-make-archives.patch \ - " -SRC_URI[md5sum] = "d15d3c700e79a1e2938544d73edc572d" -SRC_URI[sha256sum] = "3c0d450d5829204ca05dcb3b2aae772e52c379b7c7e09146759c6315606f934e" - -COMPATIBLE_HOST = "(x86_64.*|i.86.*)-linux" - -S = "${WORKDIR}/gnu-efi-3.0" - -def gnu_efi_arch(d): - import re - tarch = d.getVar("TARGET_ARCH", True) - if re.match("i[3456789]86", tarch): - return "ia32" - return tarch - -EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ - 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' 'PREFIX=${prefix}' 'LIBDIR=${libdir}' \ - " - -do_install() { - oe_runmake install INSTALLROOT="${D}" -} - -FILES_${PN} += "${libdir}/*.lds" -- 1.7.9.5 // Robert > > Ross ^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-01-13 8:30 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-01-12 0:06 [PATCH 0/1] gnu-efi: upgrade to 3.0.1 Robert Yang 2015-01-12 0:06 ` [PATCH 1/1] " Robert Yang 2015-01-12 17:48 ` Burton, Ross 2015-01-13 8:30 ` Robert Yang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox