* [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
@ 2017-02-28 1:09 California Sullivan
2017-02-28 8:33 ` Koen Kooi
0 siblings, 1 reply; 6+ messages in thread
From: California Sullivan @ 2017-02-28 1:09 UTC (permalink / raw)
To: openembedded-core; +Cc: openembedded-devel, saul.wold
BSPs for platforms using UEFI, such as meta-intel, would like to have
this more widely available for future support enhancements.
This is a direct copy of the recipe from meta-openembedded/meta-oe.
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
---
We are aware that this was recently blacklisted in meta-oe, but we were
unable to reproduce the issue under any circumstances.
.../efivar/0001-efivar-fix-for-cross-compile.patch | 35 +++++++++++++++++
.../efivar/efivar/0002-disable-static-build.patch | 33 ++++++++++++++++
.../efivar/0003-efivar-fix-for-cross-compile.patch | 44 +++++++++++++++++++++
.../0004-fix-unknow-option-for-gold-linker.patch | 38 ++++++++++++++++++
.../allow-multi-definitions-for-native.patch | 23 +++++++++++
.../fix-compile-failure-with-host-gcc-4.6.patch | 45 ++++++++++++++++++++++
meta/recipes-extended/efivar/efivar_0.24.bb | 43 +++++++++++++++++++++
7 files changed, 261 insertions(+)
create mode 100644 meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
create mode 100644 meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
create mode 100644 meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
create mode 100644 meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
create mode 100644 meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
create mode 100644 meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
create mode 100644 meta/recipes-extended/efivar/efivar_0.24.bb
diff --git a/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
new file mode 100644
index 0000000..6f6ca64
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
@@ -0,0 +1,35 @@
+From 9a3c480af653b37e62d1be04d49fe7a60a80168f Mon Sep 17 00:00:00 2001
+From: Kai Kang <kai.kang@windriver.com>
+Date: Fri, 25 Sep 2015 18:14:31 +0800
+Subject: [PATCH 1/2] efivar: fix for cross compile
+
+It builds and calls elf file makeguids to generate a header file which
+doesn't work for cross compile. Fix it.
+
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
+
+Upstream-Status: Pending
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+
+---
+ src/Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index 5fc7887..1829d22 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -29,8 +29,8 @@ all : deps $(TARGETS)
+ ./guid-symbols.c : include/efivar/efivar-guids.h
+ ./guids.bin : include/efivar/efivar-guids.h
+ ./names.bin : include/efivar/efivar-guids.h
+-include/efivar/efivar-guids.h : makeguids guids.txt
+- ./makeguids guids.txt guids.bin names.bin \
++include/efivar/efivar-guids.h : guids.txt
++ makeguids guids.txt guids.bin names.bin \
+ guid-symbols.c include/efivar/efivar-guids.h
+
+ makeguids : CPPFLAGS+=-DEFIVAR_BUILD_ENVIRONMENT
+--
+2.4.3
+
diff --git a/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
new file mode 100644
index 0000000..951b159
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
@@ -0,0 +1,33 @@
+From 126e0d3c1ad74cf5b0abe9e98ec444bcc3c83159 Mon Sep 17 00:00:00 2001
+From: Koen Kooi <koen.kooi@linaro.org>
+Date: Fri, 4 Mar 2016 14:53:55 +0100
+Subject: [PATCH 2/2] disable static build
+
+Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
+
+Upstream-Status: Inappropriate [meta-oe specific]
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+
+---
+ src/Makefile | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index 1829d22..c7a0ca3 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -8,9 +8,9 @@ include $(TOPDIR)/Make.defaults
+
+ LIBTARGETS=libefivar.so libefiboot.so
+ STATICLIBTARGETS=libefivar.a libefiboot.a
+-BINTARGETS=efivar efivar-static
++BINTARGETS=efivar
+ PCTARGETS=efivar.pc efiboot.pc
+-TARGETS=$(LIBTARGETS) $(STATICLIBTARGETS) $(BINTARGETS) $(PCTARGETS)
++TARGETS=$(LIBTARGETS) $(BINTARGETS) $(PCTARGETS)
+
+ LIBEFIBOOT_SOURCES = crc32.c creator.c disk.c gpt.c linux.c loadopt.c
+ LIBEFIBOOT_OBJECTS = $(patsubst %.c,%.o,$(LIBEFIBOOT_SOURCES))
+--
+2.4.3
+
diff --git a/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
new file mode 100644
index 0000000..3f43f2a
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
@@ -0,0 +1,44 @@
+From 7ead29ca6bb5e280ae07551cc3521281ecf73682 Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Sat, 7 May 2016 02:06:47 -0400
+Subject: [PATCH] Makefile: fix efivar.pc not found
+
+It fixes efivar.pc not found:
+...
+| install -d -m 755 efivar/0.23-r0/image/usr/lib/pkgconfig/
+| install -m 644 efivar.pc efivar/0.23-r0/image/usr/lib/pkgconfig/
+; install -m 644 efiboot.pc efivar/0.23-r0/image/usr/lib/pkgconfig/
+;
+| install: cannot stat 'efivar.pc': No such file or directory
+| install: cannot stat 'efiboot.pc': No such file or directory
+| make[1]: *** [install] Error 1
+| make[1]: Leaving directory `efivar/0.23-r0/git/src'
+| make: *** [install] Error 2
+| ERROR: oe_runmake failed
+...
+
+Upstream-Status: Pending
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ src/Makefile | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/src/Makefile b/src/Makefile
+index c7a0ca3..ad9c427 100644
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -78,7 +78,9 @@ install : all
+ ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x).$(MAJOR_VERSION);\
+ ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x); )
+ $(INSTALL) -d -m 755 $(DESTDIR)$(PCDIR)
+- $(foreach x, $(PCTARGETS), $(INSTALL) -m 644 $(x) $(DESTDIR)$(PCDIR) ;)
++ $(foreach x, $(PCTARGETS), $(INSTALL) -m 644 $(TOPDIR)/src/$(x).in $(DESTDIR)$(PCDIR)/$(x) ;\
++ sed -i -e "s:@@LIBDIR@@:$(libdir):g" -e "s:@@VERSION@@:$(VERSION):g" \
++ $(DESTDIR)$(PCDIR)/$(x); )
+ $(INSTALL) -d -m 755 $(DESTDIR)$(includedir)/efivar
+ $(foreach x, $(wildcard $(TOPDIR)/src/include/efivar/*.h), $(INSTALL) -m 644 $(x) $(DESTDIR)$(includedir)/efivar/$(notdir $(x));)
+ $(INSTALL) -d -m 755 $(DESTDIR)$(bindir)
+--
+2.8.1
+
diff --git a/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
new file mode 100644
index 0000000..5d50c19
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
@@ -0,0 +1,38 @@
+From b3d35e7dd27a755df5acbe050837885914dbb28b Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Tue, 10 May 2016 11:34:50 -0400
+Subject: [PATCH] fix unknow option for gold linker
+
+- Revert the following patch, since oe-core work with gcc 5
+...
+commit 3055a3797f16693dfdd855fa68bc57fd900dc408
+Author: Peter Jones <pjones@redhat.com>
+Date: Mon Feb 15 14:15:40 2016 -0500
+
+ Make gcc.specs work with gcc 6 / binutils 2.26
+
+ Apparently binutils 2.26 gets real picky about "ld -PIC" vs "ld -fPIC".
+
+ Signed-off-by: Peter Jones <pjones@redhat.com>
+...
+
+- Remove unknown option '--add-needed'
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ gcc.specs | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gcc.specs b/gcc.specs
+index 24fabc2..5b0fdef 100644
+--- a/gcc.specs
++++ b/gcc.specs
+@@ -14,4 +14,4 @@
+ + %{!shared:%{!static:%{!r:-pie}}} %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
+
+ *link:
+-+ %{!static:--fatal-warnings} --no-undefined-version --no-allow-shlib-undefined --add-needed -z now --build-id %{!static:%{!shared:-PIE}} %{shared:-z relro -PIC} %{static:%<pie}
+++ %{!static:--fatal-warnings} --no-undefined-version --no-allow-shlib-undefined -z now --build-id %{!static:%{!shared:-pie}} %{shared:-z relro -fPIC} %{static:%<pie}
+--
+2.8.1
+
diff --git a/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
new file mode 100644
index 0000000..87f5555
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Pending
+
+It fails to create .so file when build efivar-native:
+
+| lib.o:(*IND*+0x0): multiple definition of `efi_set_variable'
+| lib.o:lib.c:(.text+0xa0): first defined here
+
+Add link option '-z muldefs' to fix it.
+
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
+---
+diff --git a/Make.rules b/Make.rules
+index d9c0609..874bce0 100644
+--- a/Make.rules
++++ b/Make.rules
+@@ -20,6 +20,7 @@ include $(TOPDIR)/Make.version
+ $(CCLD) $(ccldflags) $(CPPFLAGS) $(SOFLAGS) \
+ -Wl,-soname,$@.$(MAJOR_VERSION) \
+ -Wl,--version-script=$(MAP) \
++ -Wl,-z,muldefs \
+ -o $@ $^ $(LDLIBS)
+
+ %.o : %.c
diff --git a/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
new file mode 100644
index 0000000..1c68a29
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
@@ -0,0 +1,45 @@
+From 1361225abbaba878960f970df39a4570bbc39553 Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Thu, 26 May 2016 21:50:01 -0400
+Subject: [PATCH] fix compile failure with older host gcc (<=4.6)
+
+While host gcc version is 4.6.3 in ubuntu 1204, it
+did not recognize -std=gnu11 and -Wmaybe-uninitialized.
+
+While host gcc version is 4.4.7 in centos6, it
+did not recognize -std=gnu11, -Wmaybe-uninitialized,
+and -flto.
+
+For native build, use -std=gnu99 to replace -std=gnu11,
+and directly remove -Wmaybe-uninitialized and -flto.
+
+Upstream-Status: Pending
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ gcc.specs | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/gcc.specs b/gcc.specs
+index 0d4bbda..3802ca6 100644
+--- a/gcc.specs
++++ b/gcc.specs
+@@ -2,13 +2,13 @@
+ + -D_GNU_SOURCE
+
+ *efivar_cpp_options:
+- -Werror -Wall -std=gnu11 -Wextra
++ -Werror -Wall -std=gnu99 -Wextra
+
+ *cpp_options:
+ + %(efivar_cpp_options)
+
+ *cc1_options:
+-+ %(efivar_cpp_options) -Wmaybe-uninitialized -fno-merge-constants -flto -fvisibility=hidden %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}}
+++ %(efivar_cpp_options) -fno-merge-constants -fvisibility=hidden %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}}
+
+ *self_spec:
+ + %{!shared:%{!static:%{!r:-pie}}} %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
+--
+2.8.1
+
diff --git a/meta/recipes-extended/efivar/efivar_0.24.bb b/meta/recipes-extended/efivar/efivar_0.24.bb
new file mode 100644
index 0000000..efffde5
--- /dev/null
+++ b/meta/recipes-extended/efivar/efivar_0.24.bb
@@ -0,0 +1,43 @@
+SUMMARY = "Tools to manipulate UEFI variables"
+DESCRIPTION = "efivar provides a simple command line interface to the UEFI variable facility"
+HOMEPAGE = "https://github.com/rhinstaller/efivar"
+
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393"
+
+DEPENDS = "popt"
+DEPENDS_append_class-target = " efivar-native"
+
+COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
+
+SRCREV = "963cb2e5adc145fe00717f94e382f2973f80e753"
+SRC_URI = "git://github.com/rhinstaller/efivar.git \
+ file://0002-disable-static-build.patch \
+"
+SRC_URI_append_class-target = " file://0001-efivar-fix-for-cross-compile.patch \
+ file://0003-efivar-fix-for-cross-compile.patch \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', 'file://0004-fix-unknow-option-for-gold-linker.patch', '', d)} \
+ "
+SRC_URI_append_class-native = " file://fix-compile-failure-with-host-gcc-4.6.patch \
+ file://allow-multi-definitions-for-native.patch \
+ "
+
+S = "${WORKDIR}/git"
+
+# Setting CROSS_COMPILE breaks pkgconfig, so just set AR
+EXTRA_OEMAKE = "AR=${TARGET_PREFIX}gcc-ar"
+
+do_compile_prepend() {
+ sed -i -e s:-Werror::g ${S}/gcc.specs
+}
+
+do_install() {
+ oe_runmake install DESTDIR=${D}
+}
+
+do_install_append_class-native() {
+ install -D -m 0755 ${B}/src/makeguids ${D}${bindir}/makeguids
+}
+
+BBCLASSEXTEND = "native"
+
--
2.5.5
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
2017-02-28 1:09 [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core California Sullivan
@ 2017-02-28 8:33 ` Koen Kooi
2017-02-28 8:58 ` Martin Jansa
0 siblings, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2017-02-28 8:33 UTC (permalink / raw)
To: openembedded-core; +Cc: openembedded-devel
Op 28-02-17 om 02:09 schreef California Sullivan:
> BSPs for platforms using UEFI, such as meta-intel, would like to have
> this more widely available
I guess you're saying "one less git repo to clone"? I don't think that's a
good enough reason to move it to OE-core.
> for future support enhancements.
I'm having trouble parsing this, it seems like you're saying that having it
in meta-oe precludes you from contributing to it?
>
> This is a direct copy of the recipe from meta-openembedded/meta-oe.
>
> Signed-off-by: California Sullivan
> <california.l.sullivan@intel.com> --- We
> are aware that this was recently blacklisted in meta-oe, but we were
> unable to reproduce the issue under any circumstances.
>
> .../efivar/0001-efivar-fix-for-cross-compile.patch | 35
> +++++++++++++++++ .../efivar/efivar/0002-disable-static-build.patch | 33
> ++++++++++++++++ .../efivar/0003-efivar-fix-for-cross-compile.patch | 44
> +++++++++++++++++++++ .../0004-fix-unknow-option-for-gold-linker.patch
> | 38 ++++++++++++++++++ .../allow-multi-definitions-for-native.patch
> | 23 +++++++++++ .../fix-compile-failure-with-host-gcc-4.6.patch | 45
> ++++++++++++++++++++++ meta/recipes-extended/efivar/efivar_0.24.bb
> | 43 +++++++++++++++++++++ 7 files changed, 261 insertions(+) create mode
> 100644
> meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
>
>
create mode 100644
meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> create mode 100644
> meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
>
>
create mode 100644
meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> create mode 100644
> meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
>
>
create mode 100644
meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> create mode 100644 meta/recipes-extended/efivar/efivar_0.24.bb
>
> diff --git
> a/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
> b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
>
>
new file mode 100644
> index 0000000..6f6ca64 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
>
>
@@ -0,0 +1,35 @@
> +From 9a3c480af653b37e62d1be04d49fe7a60a80168f Mon Sep 17 00:00:00 2001
> +From: Kai Kang <kai.kang@windriver.com> +Date:
> Fri, 25 Sep 2015 18:14:31 +0800 +Subject: [PATCH 1/2] efivar: fix for
> cross compile + +It builds and calls elf file makeguids to generate a
> header file which +doesn't work for cross compile. Fix it. +
> +Signed-off-by: Kai Kang
> <kai.kang@windriver.com> + +Upstream-Status:
> Pending +Signed-off-by: Hongxu Jia
> <hongxu.jia@windriver.com> + +--- +
> src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> + +diff --git a/src/Makefile b/src/Makefile +index 5fc7887..1829d22
> 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -29,8 +29,8 @@ all :
> deps $(TARGETS) + ./guid-symbols.c : include/efivar/efivar-guids.h +
> ./guids.bin : include/efivar/efivar-guids.h + ./names.bin :
> include/efivar/efivar-guids.h +-include/efivar/efivar-guids.h : makeguids
> guids.txt +- ./makeguids guids.txt guids.bin names.bin \
> ++include/efivar/efivar-guids.h : guids.txt ++ makeguids guids.txt
> guids.bin names.bin \ + guid-symbols.c include/efivar/efivar-guids.h +
> + makeguids : CPPFLAGS+=-DEFIVAR_BUILD_ENVIRONMENT +-- +2.4.3 + diff
> --git
> a/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch new
> file mode 100644 index 0000000..951b159 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch @@
> -0,0 +1,33 @@ +From 126e0d3c1ad74cf5b0abe9e98ec444bcc3c83159 Mon Sep 17
> 00:00:00 2001 +From: Koen Kooi
> <koen.kooi@linaro.org> +Date: Fri, 4 Mar
> 2016 14:53:55 +0100 +Subject: [PATCH 2/2] disable static build +
> +Signed-off-by: Koen Kooi
> <koen.kooi@linaro.org> + +Upstream-Status:
> Inappropriate [meta-oe specific] +Signed-off-by: Hongxu Jia
> <hongxu.jia@windriver.com> + +--- +
> src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> + +diff --git a/src/Makefile b/src/Makefile +index 1829d22..c7a0ca3
> 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -8,9 +8,9 @@ include
> $(TOPDIR)/Make.defaults + + LIBTARGETS=libefivar.so libefiboot.so +
> STATICLIBTARGETS=libefivar.a libefiboot.a +-BINTARGETS=efivar
> efivar-static ++BINTARGETS=efivar + PCTARGETS=efivar.pc efiboot.pc
> +-TARGETS=$(LIBTARGETS) $(STATICLIBTARGETS) $(BINTARGETS) $(PCTARGETS)
> ++TARGETS=$(LIBTARGETS) $(BINTARGETS) $(PCTARGETS) + + LIBEFIBOOT_SOURCES
> = crc32.c creator.c disk.c gpt.c linux.c loadopt.c + LIBEFIBOOT_OBJECTS =
> $(patsubst %.c,%.o,$(LIBEFIBOOT_SOURCES)) +-- +2.4.3 + diff --git
> a/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
> b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
>
>
new file mode 100644
> index 0000000..3f43f2a --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
>
>
@@ -0,0 +1,44 @@
> +From 7ead29ca6bb5e280ae07551cc3521281ecf73682 Mon Sep 17 00:00:00 2001
> +From: Hongxu Jia <hongxu.jia@windriver.com>
> +Date: Sat, 7 May 2016 02:06:47 -0400 +Subject: [PATCH] Makefile: fix
> efivar.pc not found + +It fixes efivar.pc not found: +... +| install -d
> -m 755 efivar/0.23-r0/image/usr/lib/pkgconfig/ +| install -m 644
> efivar.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; install -m 644
> efiboot.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; +| install: cannot
> stat 'efivar.pc': No such file or directory +| install: cannot stat
> 'efiboot.pc': No such file or directory +| make[1]: *** [install] Error
> 1 +| make[1]: Leaving directory `efivar/0.23-r0/git/src' +| make: ***
> [install] Error 2 +| ERROR: oe_runmake failed +... + +Upstream-Status:
> Pending + +Signed-off-by: Hongxu Jia
> <hongxu.jia@windriver.com> +--- + src/Makefile
> | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git
> a/src/Makefile b/src/Makefile +index c7a0ca3..ad9c427 100644 +---
> a/src/Makefile ++++ b/src/Makefile +@@ -78,7 +78,9 @@ install : all +
> ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x).$(MAJOR_VERSION);\ + ln
> -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x); ) + $(INSTALL) -d -m 755
> $(DESTDIR)$(PCDIR) +- $(foreach x, $(PCTARGETS), $(INSTALL) -m 644 $(x)
> $(DESTDIR)$(PCDIR) ;) ++ $(foreach x, $(PCTARGETS), $(INSTALL) -m 644
> $(TOPDIR)/src/$(x).in $(DESTDIR)$(PCDIR)/$(x) ;\ ++ sed -i -e
> "s:@@LIBDIR@@:$(libdir):g" -e "s:@@VERSION@@:$(VERSION):g" \ ++
> $(DESTDIR)$(PCDIR)/$(x); ) + $(INSTALL) -d -m 755
> $(DESTDIR)$(includedir)/efivar + $(foreach x, $(wildcard
> $(TOPDIR)/src/include/efivar/*.h), $(INSTALL) -m 644 $(x)
> $(DESTDIR)$(includedir)/efivar/$(notdir $(x));) + $(INSTALL) -d -m 755
> $(DESTDIR)$(bindir) +-- +2.8.1 + diff --git
> a/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
>
>
new file mode 100644
> index 0000000..5d50c19 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
>
>
@@ -0,0 +1,38 @@
> +From b3d35e7dd27a755df5acbe050837885914dbb28b Mon Sep 17 00:00:00 2001
> +From: Hongxu Jia <hongxu.jia@windriver.com>
> +Date: Tue, 10 May 2016 11:34:50 -0400 +Subject: [PATCH] fix unknow
> option for gold linker + +- Revert the following patch, since oe-core
> work with gcc 5 +... +commit 3055a3797f16693dfdd855fa68bc57fd900dc408
> +Author: Peter Jones <pjones@redhat.com>
> +Date: Mon Feb 15 14:15:40 2016 -0500 + + Make gcc.specs work with
> gcc 6 / binutils 2.26 + + Apparently binutils 2.26 gets real picky
> about "ld -PIC" vs "ld -fPIC". + + Signed-off-by: Peter Jones
> <pjones@redhat.com> +... + +- Remove unknown
> option '--add-needed' + +Signed-off-by: Hongxu Jia
> <hongxu.jia@windriver.com> +--- + gcc.specs | 2
> +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git
> a/gcc.specs b/gcc.specs +index 24fabc2..5b0fdef 100644 +--- a/gcc.specs
> ++++ b/gcc.specs +@@ -14,4 +14,4 @@ + + %{!shared:%{!static:%{!r:-pie}}}
> %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> + + *link: +-+ %{!static:--fatal-warnings} --no-undefined-version
> --no-allow-shlib-undefined --add-needed -z now --build-id
> %{!static:%{!shared:-PIE}} %{shared:-z relro -PIC} %{static:%<pie} +++
> %{!static:--fatal-warnings} --no-undefined-version
> --no-allow-shlib-undefined -z now --build-id %{!static:%{!shared:-pie}}
> %{shared:-z relro -fPIC} %{static:%<pie} +-- +2.8.1 + diff --git
> a/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
> b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
>
>
new file mode 100644
> index 0000000..87f5555 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
>
>
@@ -0,0 +1,23 @@
> +Upstream-Status: Pending + +It fails to create .so file when build
> efivar-native: + +| lib.o:(*IND*+0x0): multiple definition of
> `efi_set_variable' +| lib.o:lib.c:(.text+0xa0): first defined here + +Add
> link option '-z muldefs' to fix it. + +Signed-off-by: Kai Kang
> <kai.kang@windriver.com> +--- +diff --git
> a/Make.rules b/Make.rules +index d9c0609..874bce0 100644 +---
> a/Make.rules ++++ b/Make.rules +@@ -20,6 +20,7 @@ include
> $(TOPDIR)/Make.version + $(CCLD) $(ccldflags) $(CPPFLAGS) $(SOFLAGS) \ +
> -Wl,-soname,$@.$(MAJOR_VERSION) \ + -Wl,--version-script=$(MAP) \ ++
> -Wl,-z,muldefs \ + -o $@ $^ $(LDLIBS) + + %.o : %.c diff --git
> a/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
>
>
new file mode 100644
> index 0000000..1c68a29 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
>
>
@@ -0,0 +1,45 @@
> +From 1361225abbaba878960f970df39a4570bbc39553 Mon Sep 17 00:00:00 2001
> +From: Hongxu Jia <hongxu.jia@windriver.com>
> +Date: Thu, 26 May 2016 21:50:01 -0400 +Subject: [PATCH] fix compile
> failure with older host gcc (<=4.6) + +While host gcc version is 4.6.3 in
> ubuntu 1204, it +did not recognize -std=gnu11 and -Wmaybe-uninitialized.
> + +While host gcc version is 4.4.7 in centos6, it +did not recognize
> -std=gnu11, -Wmaybe-uninitialized, +and -flto. + +For native build, use
> -std=gnu99 to replace -std=gnu11, +and directly remove
> -Wmaybe-uninitialized and -flto. + +Upstream-Status: Pending +
> +Signed-off-by: Hongxu Jia
> <hongxu.jia@windriver.com> +--- + gcc.specs | 4
> ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git
> a/gcc.specs b/gcc.specs +index 0d4bbda..3802ca6 100644 +--- a/gcc.specs
> ++++ b/gcc.specs +@@ -2,13 +2,13 @@ + + -D_GNU_SOURCE + +
> *efivar_cpp_options: +- -Werror -Wall -std=gnu11 -Wextra ++ -Werror -Wall
> -std=gnu99 -Wextra + + *cpp_options: + + %(efivar_cpp_options) + +
> *cc1_options: +-+ %(efivar_cpp_options) -Wmaybe-uninitialized
> -fno-merge-constants -flto -fvisibility=hidden
> %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} +++
> %(efivar_cpp_options) -fno-merge-constants -fvisibility=hidden
> %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} + +
> *self_spec: + + %{!shared:%{!static:%{!r:-pie}}}
> %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> +-- +2.8.1 + diff --git a/meta/recipes-extended/efivar/efivar_0.24.bb
> b/meta/recipes-extended/efivar/efivar_0.24.bb new file mode 100644 index
> 0000000..efffde5 --- /dev/null +++
> b/meta/recipes-extended/efivar/efivar_0.24.bb @@ -0,0 +1,43 @@ +SUMMARY =
> "Tools to manipulate UEFI variables" +DESCRIPTION = "efivar provides a
> simple command line interface to the UEFI variable facility" +HOMEPAGE =
> "https://github.com/rhinstaller/efivar" + +LICENSE = "LGPLv2.1"
> +LIC_FILES_CHKSUM =
> "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393" + +DEPENDS =
> "popt" +DEPENDS_append_class-target = " efivar-native" + +COMPATIBLE_HOST
> = "(i.86|x86_64|arm|aarch64).*-linux" + +SRCREV =
> "963cb2e5adc145fe00717f94e382f2973f80e753" +SRC_URI =
> "git://github.com/rhinstaller/efivar.git \ +
> file://0002-disable-static-build.patch \ +" +SRC_URI_append_class-target
> = " file://0001-efivar-fix-for-cross-compile.patch \ +
> file://0003-efivar-fix-for-cross-compile.patch \ +
> ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold',
> 'file://0004-fix-unknow-option-for-gold-linker.patch', '', d)} \ +
> " +SRC_URI_append_class-native = "
> file://fix-compile-failure-with-host-gcc-4.6.patch \ +
> file://allow-multi-definitions-for-native.patch \ +
> " + +S = "${WORKDIR}/git" + +# Setting CROSS_COMPILE breaks pkgconfig, so
> just set AR +EXTRA_OEMAKE = "AR=${TARGET_PREFIX}gcc-ar" +
> +do_compile_prepend() { + sed -i -e s:-Werror::g ${S}/gcc.specs +} +
> +do_install() { + oe_runmake install DESTDIR=${D} +} +
> +do_install_append_class-native() { + install -D -m 0755
> ${B}/src/makeguids ${D}${bindir}/makeguids +} + +BBCLASSEXTEND =
> "native" +
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
2017-02-28 8:33 ` Koen Kooi
@ 2017-02-28 8:58 ` Martin Jansa
2017-02-28 9:02 ` [oe] " Alexander Kanavin
2017-03-01 7:19 ` Koen Kooi
0 siblings, 2 replies; 6+ messages in thread
From: Martin Jansa @ 2017-02-28 8:58 UTC (permalink / raw)
To: Koen Kooi
Cc: openembedded-devel,
Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 14856 bytes --]
Agreed with Koen.
Everything outside oe-core is meant to be nice little colorful boxes which
don't depend on each other (as discussed on OEDAM), but whatever intel
needs has to go to oe-core.
> We are aware that this was recently blacklisted in meta-oe, but we were unable
to reproduce the issue under any circumstances.
And it still fails to build and it will continue to fail even from oe-core.
On Tue, Feb 28, 2017 at 9:33 AM, Koen Kooi <koen@dominion.thruhere.net>
wrote:
> Op 28-02-17 om 02:09 schreef California Sullivan:
> > BSPs for platforms using UEFI, such as meta-intel, would like to have
> > this more widely available
>
> I guess you're saying "one less git repo to clone"? I don't think that's a
> good enough reason to move it to OE-core.
>
> > for future support enhancements.
>
> I'm having trouble parsing this, it seems like you're saying that having it
> in meta-oe precludes you from contributing to it?
>
> >
> > This is a direct copy of the recipe from meta-openembedded/meta-oe.
> >
> > Signed-off-by: California Sullivan
> > <california.l.sullivan@intel.com> --- We
> > are aware that this was recently blacklisted in meta-oe, but we were
> > unable to reproduce the issue under any circumstances.
> >
> > .../efivar/0001-efivar-fix-for-cross-compile.patch | 35
> > +++++++++++++++++ .../efivar/efivar/0002-disable-static-build.patch |
> 33
> > ++++++++++++++++ .../efivar/0003-efivar-fix-for-cross-compile.patch | 44
> > +++++++++++++++++++++ .../0004-fix-unknow-option-for-gold-linker.patch
> > | 38 ++++++++++++++++++ .../allow-multi-definitions-for-native.patch
> > | 23 +++++++++++ .../fix-compile-failure-with-host-gcc-4.6.patch | 45
> > ++++++++++++++++++++++ meta/recipes-extended/efivar/efivar_0.24.bb
> > | 43 +++++++++++++++++++++ 7 files changed, 261 insertions(+) create mode
> > 100644
> > meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-
> cross-compile.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-
> cross-compile.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-
> for-gold-linker.patch
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/fix-compile-failure-
> with-host-gcc-4.6.patch
> > create mode 100644 meta/recipes-extended/efivar/efivar_0.24.bb
> >
> > diff --git
> > a/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> > b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> >
> >
> new file mode 100644
> > index 0000000..6f6ca64 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> >
> >
> @@ -0,0 +1,35 @@
> > +From 9a3c480af653b37e62d1be04d49fe7a60a80168f Mon Sep 17 00:00:00 2001
> > +From: Kai Kang <kai.kang@windriver.com> +Date:
> > Fri, 25 Sep 2015 18:14:31 +0800 +Subject: [PATCH 1/2] efivar: fix for
> > cross compile + +It builds and calls elf file makeguids to generate a
> > header file which +doesn't work for cross compile. Fix it. +
> > +Signed-off-by: Kai Kang
> > <kai.kang@windriver.com> + +Upstream-Status:
> > Pending +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com> + +--- +
> > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> > + +diff --git a/src/Makefile b/src/Makefile +index 5fc7887..1829d22
> > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -29,8 +29,8 @@ all :
> > deps $(TARGETS) + ./guid-symbols.c : include/efivar/efivar-guids.h +
> > ./guids.bin : include/efivar/efivar-guids.h + ./names.bin :
> > include/efivar/efivar-guids.h +-include/efivar/efivar-guids.h :
> makeguids
> > guids.txt +- ./makeguids guids.txt guids.bin names.bin \
> > ++include/efivar/efivar-guids.h : guids.txt ++ makeguids
> guids.txt
> > guids.bin names.bin \ + guid-symbols.c
> include/efivar/efivar-guids.h +
> > + makeguids : CPPFLAGS+=-DEFIVAR_BUILD_ENVIRONMENT +-- +2.4.3 + diff
> > --git
> > a/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> new
> > file mode 100644 index 0000000..951b159 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch @@
> > -0,0 +1,33 @@ +From 126e0d3c1ad74cf5b0abe9e98ec444bcc3c83159 Mon Sep 17
> > 00:00:00 2001 +From: Koen Kooi
> > <koen.kooi@linaro.org> +Date: Fri, 4 Mar
> > 2016 14:53:55 +0100 +Subject: [PATCH 2/2] disable static build +
> > +Signed-off-by: Koen Kooi
> > <koen.kooi@linaro.org> + +Upstream-Status:
> > Inappropriate [meta-oe specific] +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com> + +--- +
> > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> > + +diff --git a/src/Makefile b/src/Makefile +index 1829d22..c7a0ca3
> > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -8,9 +8,9 @@ include
> > $(TOPDIR)/Make.defaults + + LIBTARGETS=libefivar.so libefiboot.so +
> > STATICLIBTARGETS=libefivar.a libefiboot.a +-BINTARGETS=efivar
> > efivar-static ++BINTARGETS=efivar + PCTARGETS=efivar.pc efiboot.pc
> > +-TARGETS=$(LIBTARGETS) $(STATICLIBTARGETS) $(BINTARGETS) $(PCTARGETS)
> > ++TARGETS=$(LIBTARGETS) $(BINTARGETS) $(PCTARGETS) + + LIBEFIBOOT_SOURCES
> > = crc32.c creator.c disk.c gpt.c linux.c loadopt.c + LIBEFIBOOT_OBJECTS =
> > $(patsubst %.c,%.o,$(LIBEFIBOOT_SOURCES)) +-- +2.4.3 + diff --git
> > a/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> > b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> >
> >
> new file mode 100644
> > index 0000000..3f43f2a --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> >
> >
> @@ -0,0 +1,44 @@
> > +From 7ead29ca6bb5e280ae07551cc3521281ecf73682 Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com>
> > +Date: Sat, 7 May 2016 02:06:47 -0400 +Subject: [PATCH] Makefile: fix
> > efivar.pc not found + +It fixes efivar.pc not found: +... +| install -d
> > -m 755 efivar/0.23-r0/image/usr/lib/pkgconfig/ +| install -m 644
> > efivar.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; install -m 644
> > efiboot.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; +| install: cannot
> > stat 'efivar.pc': No such file or directory +| install: cannot stat
> > 'efiboot.pc': No such file or directory +| make[1]: *** [install] Error
> > 1 +| make[1]: Leaving directory `efivar/0.23-r0/git/src' +| make: ***
> > [install] Error 2 +| ERROR: oe_runmake failed +... + +Upstream-Status:
> > Pending + +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com> +--- + src/Makefile
> > | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git
> > a/src/Makefile b/src/Makefile +index c7a0ca3..ad9c427 100644 +---
> > a/src/Makefile ++++ b/src/Makefile +@@ -78,7 +78,9 @@ install : all +
> > ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x).$(MAJOR_VERSION);\ +
> ln
> > -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x); ) + $(INSTALL) -d -m
> 755
> > $(DESTDIR)$(PCDIR) +- $(foreach x, $(PCTARGETS), $(INSTALL) -m 644 $(x)
> > $(DESTDIR)$(PCDIR) ;) ++ $(foreach x, $(PCTARGETS), $(INSTALL) -m
> 644
> > $(TOPDIR)/src/$(x).in $(DESTDIR)$(PCDIR)/$(x) ;\ ++ sed -i -e
> > "s:@@LIBDIR@@:$(libdir):g" -e "s:@@VERSION@@:$(VERSION):g" \ ++
> > $(DESTDIR)$(PCDIR)/$(x); ) + $(INSTALL) -d -m 755
> > $(DESTDIR)$(includedir)/efivar + $(foreach x, $(wildcard
> > $(TOPDIR)/src/include/efivar/*.h), $(INSTALL) -m 644 $(x)
> > $(DESTDIR)$(includedir)/efivar/$(notdir $(x));) + $(INSTALL) -d -m
> 755
> > $(DESTDIR)$(bindir) +-- +2.8.1 + diff --git
> > a/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> > b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> >
> >
> new file mode 100644
> > index 0000000..5d50c19 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> >
> >
> @@ -0,0 +1,38 @@
> > +From b3d35e7dd27a755df5acbe050837885914dbb28b Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com>
> > +Date: Tue, 10 May 2016 11:34:50 -0400 +Subject: [PATCH] fix unknow
> > option for gold linker + +- Revert the following patch, since oe-core
> > work with gcc 5 +... +commit 3055a3797f16693dfdd855fa68bc57fd900dc408
> > +Author: Peter Jones <pjones@redhat.com>
> > +Date: Mon Feb 15 14:15:40 2016 -0500 + + Make gcc.specs work with
> > gcc 6 / binutils 2.26 + + Apparently binutils 2.26 gets real picky
> > about "ld -PIC" vs "ld -fPIC". + + Signed-off-by: Peter Jones
> > <pjones@redhat.com> +... + +- Remove unknown
> > option '--add-needed' + +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com> +--- + gcc.specs | 2
> > +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git
> > a/gcc.specs b/gcc.specs +index 24fabc2..5b0fdef 100644 +--- a/gcc.specs
> > ++++ b/gcc.specs +@@ -14,4 +14,4 @@ + + %{!shared:%{!static:%{!r:-pie}}}
> > %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> > + + *link: +-+ %{!static:--fatal-warnings} --no-undefined-version
> > --no-allow-shlib-undefined --add-needed -z now --build-id
> > %{!static:%{!shared:-PIE}} %{shared:-z relro -PIC} %{static:%<pie} +++
> > %{!static:--fatal-warnings} --no-undefined-version
> > --no-allow-shlib-undefined -z now --build-id %{!static:%{!shared:-pie}}
> > %{shared:-z relro -fPIC} %{static:%<pie} +-- +2.8.1 + diff --git
> > a/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> > b/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> >
> >
> new file mode 100644
> > index 0000000..87f5555 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> >
> >
> @@ -0,0 +1,23 @@
> > +Upstream-Status: Pending + +It fails to create .so file when build
> > efivar-native: + +| lib.o:(*IND*+0x0): multiple definition of
> > `efi_set_variable' +| lib.o:lib.c:(.text+0xa0): first defined here + +Add
> > link option '-z muldefs' to fix it. + +Signed-off-by: Kai Kang
> > <kai.kang@windriver.com> +--- +diff --git
> > a/Make.rules b/Make.rules +index d9c0609..874bce0 100644 +---
> > a/Make.rules ++++ b/Make.rules +@@ -20,6 +20,7 @@ include
> > $(TOPDIR)/Make.version + $(CCLD) $(ccldflags) $(CPPFLAGS)
> $(SOFLAGS) \ +
> > -Wl,-soname,$@.$(MAJOR_VERSION) \ + -Wl,--version-script=$(MAP) \ ++
> > -Wl,-z,muldefs \ + -o $@ $^ $(LDLIBS) + + %.o : %.c diff --git
> > a/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> > b/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> >
> >
> new file mode 100644
> > index 0000000..1c68a29 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> >
> >
> @@ -0,0 +1,45 @@
> > +From 1361225abbaba878960f970df39a4570bbc39553 Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com>
> > +Date: Thu, 26 May 2016 21:50:01 -0400 +Subject: [PATCH] fix compile
> > failure with older host gcc (<=4.6) + +While host gcc version is 4.6.3 in
> > ubuntu 1204, it +did not recognize -std=gnu11 and -Wmaybe-uninitialized.
> > + +While host gcc version is 4.4.7 in centos6, it +did not recognize
> > -std=gnu11, -Wmaybe-uninitialized, +and -flto. + +For native build, use
> > -std=gnu99 to replace -std=gnu11, +and directly remove
> > -Wmaybe-uninitialized and -flto. + +Upstream-Status: Pending +
> > +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com> +--- + gcc.specs | 4
> > ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git
> > a/gcc.specs b/gcc.specs +index 0d4bbda..3802ca6 100644 +--- a/gcc.specs
> > ++++ b/gcc.specs +@@ -2,13 +2,13 @@ + + -D_GNU_SOURCE + +
> > *efivar_cpp_options: +- -Werror -Wall -std=gnu11 -Wextra ++ -Werror -Wall
> > -std=gnu99 -Wextra + + *cpp_options: + + %(efivar_cpp_options) + +
> > *cc1_options: +-+ %(efivar_cpp_options) -Wmaybe-uninitialized
> > -fno-merge-constants -flto -fvisibility=hidden
> > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} +++
> > %(efivar_cpp_options) -fno-merge-constants -fvisibility=hidden
> > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} + +
> > *self_spec: + + %{!shared:%{!static:%{!r:-pie}}}
> > %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> > +-- +2.8.1 + diff --git a/meta/recipes-extended/efivar/efivar_0.24.bb
> > b/meta/recipes-extended/efivar/efivar_0.24.bb new file mode 100644 index
> > 0000000..efffde5 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar_0.24.bb @@ -0,0 +1,43 @@ +SUMMARY
> =
> > "Tools to manipulate UEFI variables" +DESCRIPTION = "efivar provides a
> > simple command line interface to the UEFI variable facility" +HOMEPAGE =
> > "https://github.com/rhinstaller/efivar" + +LICENSE = "LGPLv2.1"
> > +LIC_FILES_CHKSUM =
> > "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393" + +DEPENDS =
> > "popt" +DEPENDS_append_class-target = " efivar-native" + +COMPATIBLE_HOST
> > = "(i.86|x86_64|arm|aarch64).*-linux" + +SRCREV =
> > "963cb2e5adc145fe00717f94e382f2973f80e753" +SRC_URI =
> > "git://github.com/rhinstaller/efivar.git \ +
> > file://0002-disable-static-build.patch \ +" +SRC_URI_append_class-target
> > = " file://0001-efivar-fix-for-cross-compile.patch \ +
> > file://0003-efivar-fix-for-cross-compile.patch \ +
> > ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold',
> > 'file://0004-fix-unknow-option-for-gold-linker.patch', '', d)} \ +
> > " +SRC_URI_append_class-native = "
> > file://fix-compile-failure-with-host-gcc-4.6.patch \ +
> > file://allow-multi-definitions-for-native.patch \ +
> > " + +S = "${WORKDIR}/git" + +# Setting CROSS_COMPILE breaks pkgconfig, so
> > just set AR +EXTRA_OEMAKE = "AR=${TARGET_PREFIX}gcc-ar" +
> > +do_compile_prepend() { + sed -i -e s:-Werror::g ${S}/gcc.specs +} +
> > +do_install() { + oe_runmake install DESTDIR=${D} +} +
> > +do_install_append_class-native() { + install -D -m 0755
> > ${B}/src/makeguids ${D}${bindir}/makeguids +} + +BBCLASSEXTEND =
> > "native" +
> >
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
[-- Attachment #2: Type: text/html, Size: 18942 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [oe] [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
2017-02-28 8:58 ` Martin Jansa
@ 2017-02-28 9:02 ` Alexander Kanavin
2017-03-01 7:19 ` Koen Kooi
1 sibling, 0 replies; 6+ messages in thread
From: Alexander Kanavin @ 2017-02-28 9:02 UTC (permalink / raw)
To: openembedded-core
On 02/28/2017 10:58 AM, Martin Jansa wrote:
> Everything outside oe-core is meant to be nice little colorful boxes
> which don't depend on each other (as discussed on OEDAM), but whatever
> intel needs has to go to oe-core.
FWIW, I'm with you and I strongly oppose people dumping stuff into
oe-core even if they're Intel employees :)
Alex
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
2017-02-28 8:58 ` Martin Jansa
2017-02-28 9:02 ` [oe] " Alexander Kanavin
@ 2017-03-01 7:19 ` Koen Kooi
2017-03-01 8:01 ` Martin Jansa
1 sibling, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2017-03-01 7:19 UTC (permalink / raw)
To: openembedded-core; +Cc: openembedded-devel
Op 28-02-17 om 09:58 schreef Martin Jansa:
> Agreed with Koen.
>
> Everything outside oe-core is meant to be nice little colorful boxes which
> don't depend on each other (as discussed on OEDAM), but whatever intel needs
> has to go to oe-core.
>
>> We are aware that this was recently blacklisted in meta-oe, but we
> were unable to reproduce the issue under any circumstances.
>
> And it still fails to build and it will continue to fail even from oe-core.
I suspect it's host-gcc related, it's on my plate to fix, but it will take a
few weeks before I can really look at it :/
>
> On Tue, Feb 28, 2017 at 9:33 AM, Koen Kooi <koen@dominion.thruhere.net
> <mailto:koen@dominion.thruhere.net>> wrote:
>
> Op 28-02-17 om 02:09 schreef California Sullivan:
> > BSPs for platforms using UEFI, such as meta-intel, would like to have
> > this more widely available
>
> I guess you're saying "one less git repo to clone"? I don't think that's a
> good enough reason to move it to OE-core.
>
> > for future support enhancements.
>
> I'm having trouble parsing this, it seems like you're saying that having it
> in meta-oe precludes you from contributing to it?
>
> >
> > This is a direct copy of the recipe from meta-openembedded/meta-oe.
> >
> > Signed-off-by: California Sullivan
> > <california.l.sullivan@intel.com
> <mailto:california.l.sullivan@intel.com>> --- We
> > are aware that this was recently blacklisted in meta-oe, but we were
> > unable to reproduce the issue under any circumstances.
> >
> > .../efivar/0001-efivar-fix-for-cross-compile.patch | 35
> > +++++++++++++++++ .../efivar/efivar/0002-disable-static-build.patch | 33
> > ++++++++++++++++ .../efivar/0003-efivar-fix-for-cross-compile.patch | 44
> > +++++++++++++++++++++ .../0004-fix-unknow-option-for-gold-linker.patch
> > | 38 ++++++++++++++++++ .../allow-multi-definitions-for-native.patch
> > | 23 +++++++++++ .../fix-compile-failure-with-host-gcc-4.6.patch | 45
> > ++++++++++++++++++++++ meta/recipes-extended/efivar/efivar_0.24.bb
> <http://efivar_0.24.bb>
> > | 43 +++++++++++++++++++++ 7 files changed, 261 insertions(+) create mode
> > 100644
> > meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
> >
> >
> create mode 100644
> meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> > create mode 100644 meta/recipes-extended/efivar/efivar_0.24.bb
> <http://efivar_0.24.bb>
> >
> > diff --git
> >
> a/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
> >
> b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
> >
> >
> new file mode 100644
> > index 0000000..6f6ca64 --- /dev/null +++
> >
> b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-cross-compile.patch
> >
> >
> @@ -0,0 +1,35 @@
> > +From 9a3c480af653b37e62d1be04d49fe7a60a80168f Mon Sep 17 00:00:00 2001
> > +From: Kai Kang <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> +Date:
> > Fri, 25 Sep 2015 18:14:31 +0800 +Subject: [PATCH 1/2] efivar: fix for
> > cross compile + +It builds and calls elf file makeguids to generate a
> > header file which +doesn't work for cross compile. Fix it. +
> > +Signed-off-by: Kai Kang
> > <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> + +Upstream-Status:
> > Pending +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>> + +--- +
> > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> > + +diff --git a/src/Makefile b/src/Makefile +index 5fc7887..1829d22
> > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -29,8 +29,8 @@ all :
> > deps $(TARGETS) + ./guid-symbols.c : include/efivar/efivar-guids.h +
> > ./guids.bin : include/efivar/efivar-guids.h + ./names.bin :
> > include/efivar/efivar-guids.h +-include/efivar/efivar-guids.h : makeguids
> > guids.txt +- ./makeguids guids.txt guids.bin names.bin \
> > ++include/efivar/efivar-guids.h : guids.txt ++ makeguids guids.txt
> > guids.bin names.bin \ + guid-symbols.c
> include/efivar/efivar-guids.h +
> > + makeguids : CPPFLAGS+=-DEFIVAR_BUILD_ENVIRONMENT +-- +2.4.3 + diff
> > --git
> > a/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch new
> > file mode 100644 index 0000000..951b159 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch @@
> > -0,0 +1,33 @@ +From 126e0d3c1ad74cf5b0abe9e98ec444bcc3c83159 Mon Sep 17
> > 00:00:00 2001 +From: Koen Kooi
> > <koen.kooi@linaro.org
> <mailto:koen.kooi@linaro.org>> +Date: Fri, 4 Mar
> > 2016 14:53:55 +0100 +Subject: [PATCH 2/2] disable static build +
> > +Signed-off-by: Koen Kooi
> > <koen.kooi@linaro.org
> <mailto:koen.kooi@linaro.org>> +
> +Upstream-Status:
> > Inappropriate [meta-oe specific] +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>> + +--- +
> > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-)
> > + +diff --git a/src/Makefile b/src/Makefile +index 1829d22..c7a0ca3
> > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -8,9 +8,9 @@ include
> > $(TOPDIR)/Make.defaults + + LIBTARGETS=libefivar.so libefiboot.so +
> > STATICLIBTARGETS=libefivar.a libefiboot.a +-BINTARGETS=efivar
> > efivar-static ++BINTARGETS=efivar + PCTARGETS=efivar.pc efiboot.pc
> > +-TARGETS=$(LIBTARGETS) $(STATICLIBTARGETS) $(BINTARGETS) $(PCTARGETS)
> > ++TARGETS=$(LIBTARGETS) $(BINTARGETS) $(PCTARGETS) + + LIBEFIBOOT_SOURCES
> > = crc32.c creator.c disk.c gpt.c linux.c loadopt.c + LIBEFIBOOT_OBJECTS =
> > $(patsubst %.c,%.o,$(LIBEFIBOOT_SOURCES)) +-- +2.4.3 + diff --git
> >
> a/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
> >
> b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
> >
> >
> new file mode 100644
> > index 0000000..3f43f2a --- /dev/null +++
> >
> b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-cross-compile.patch
> >
> >
> @@ -0,0 +1,44 @@
> > +From 7ead29ca6bb5e280ae07551cc3521281ecf73682 Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>>
> > +Date: Sat, 7 May 2016 02:06:47 -0400 +Subject: [PATCH] Makefile: fix
> > efivar.pc not found + +It fixes efivar.pc not found: +... +| install -d
> > -m 755 efivar/0.23-r0/image/usr/lib/pkgconfig/ +| install -m 644
> > efivar.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; install -m 644
> > efiboot.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; +| install: cannot
> > stat 'efivar.pc': No such file or directory +| install: cannot stat
> > 'efiboot.pc': No such file or directory +| make[1]: *** [install] Error
> > 1 +| make[1]: Leaving directory `efivar/0.23-r0/git/src' +| make: ***
> > [install] Error 2 +| ERROR: oe_runmake failed +... + +Upstream-Status:
> > Pending + +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>> +--- +
> src/Makefile
> > | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git
> > a/src/Makefile b/src/Makefile +index c7a0ca3..ad9c427 100644 +---
> > a/src/Makefile ++++ b/src/Makefile +@@ -78,7 +78,9 @@ install : all +
> > ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x).$(MAJOR_VERSION);\ +
> ln
> > -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x); ) + $(INSTALL) -d -m 755
> > $(DESTDIR)$(PCDIR) +- $(foreach x, $(PCTARGETS), $(INSTALL) -m 644 $(x)
> > $(DESTDIR)$(PCDIR) ;) ++ $(foreach x, $(PCTARGETS), $(INSTALL) -m 644
> > $(TOPDIR)/src/$(x).in $(DESTDIR)$(PCDIR)/$(x) ;\ ++ sed -i -e
> > "s:@@LIBDIR@@:$(libdir):g" -e "s:@@VERSION@@:$(VERSION):g" \ ++
> > $(DESTDIR)$(PCDIR)/$(x); ) + $(INSTALL) -d -m 755
> > $(DESTDIR)$(includedir)/efivar + $(foreach x, $(wildcard
> > $(TOPDIR)/src/include/efivar/*.h), $(INSTALL) -m 644 $(x)
> > $(DESTDIR)$(includedir)/efivar/$(notdir $(x));) + $(INSTALL) -d -m 755
> > $(DESTDIR)$(bindir) +-- +2.8.1 + diff --git
> >
> a/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> >
> b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> >
> >
> new file mode 100644
> > index 0000000..5d50c19 --- /dev/null +++
> >
> b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-for-gold-linker.patch
> >
> >
> @@ -0,0 +1,38 @@
> > +From b3d35e7dd27a755df5acbe050837885914dbb28b Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>>
> > +Date: Tue, 10 May 2016 11:34:50 -0400 +Subject: [PATCH] fix unknow
> > option for gold linker + +- Revert the following patch, since oe-core
> > work with gcc 5 +... +commit 3055a3797f16693dfdd855fa68bc57fd900dc408
> > +Author: Peter Jones <pjones@redhat.com
> <mailto:pjones@redhat.com>>
> > +Date: Mon Feb 15 14:15:40 2016 -0500 + + Make gcc.specs work with
> > gcc 6 / binutils 2.26 + + Apparently binutils 2.26 gets real picky
> > about "ld -PIC" vs "ld -fPIC". + + Signed-off-by: Peter Jones
> > <pjones@redhat.com
> <mailto:pjones@redhat.com>> +... + +- Remove
> unknown
> > option '--add-needed' + +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>> +--- +
> gcc.specs | 2
> > +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git
> > a/gcc.specs b/gcc.specs +index 24fabc2..5b0fdef 100644 +--- a/gcc.specs
> > ++++ b/gcc.specs +@@ -14,4 +14,4 @@ + + %{!shared:%{!static:%{!r:-pie}}}
> > %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> > + + *link: +-+ %{!static:--fatal-warnings} --no-undefined-version
> > --no-allow-shlib-undefined --add-needed -z now --build-id
> > %{!static:%{!shared:-PIE}} %{shared:-z relro -PIC} %{static:%<pie} +++
> > %{!static:--fatal-warnings} --no-undefined-version
> > --no-allow-shlib-undefined -z now --build-id %{!static:%{!shared:-pie}}
> > %{shared:-z relro -fPIC} %{static:%<pie} +-- +2.8.1 + diff --git
> >
> a/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
> >
> b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
> >
> >
> new file mode 100644
> > index 0000000..87f5555 --- /dev/null +++
> >
> b/meta/recipes-extended/efivar/efivar/allow-multi-definitions-for-native.patch
> >
> >
> @@ -0,0 +1,23 @@
> > +Upstream-Status: Pending + +It fails to create .so file when build
> > efivar-native: + +| lib.o:(*IND*+0x0): multiple definition of
> > `efi_set_variable' +| lib.o:lib.c:(.text+0xa0): first defined here + +Add
> > link option '-z muldefs' to fix it. + +Signed-off-by: Kai Kang
> > <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> +--- +diff --git
> > a/Make.rules b/Make.rules +index d9c0609..874bce0 100644 +---
> > a/Make.rules ++++ b/Make.rules +@@ -20,6 +20,7 @@ include
> > $(TOPDIR)/Make.version + $(CCLD) $(ccldflags) $(CPPFLAGS)
> $(SOFLAGS) \ +
> > -Wl,-soname,$@.$(MAJOR_VERSION) \ + -Wl,--version-script=$(MAP) \ ++
> > -Wl,-z,muldefs \ + -o $@ $^ $(LDLIBS) + + %.o : %.c diff --git
> >
> a/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> >
> b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> >
> >
> new file mode 100644
> > index 0000000..1c68a29 --- /dev/null +++
> >
> b/meta/recipes-extended/efivar/efivar/fix-compile-failure-with-host-gcc-4.6.patch
> >
> >
> @@ -0,0 +1,45 @@
> > +From 1361225abbaba878960f970df39a4570bbc39553 Mon Sep 17 00:00:00 2001
> > +From: Hongxu Jia <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>>
> > +Date: Thu, 26 May 2016 21:50:01 -0400 +Subject: [PATCH] fix compile
> > failure with older host gcc (<=4.6) + +While host gcc version is 4.6.3 in
> > ubuntu 1204, it +did not recognize -std=gnu11 and -Wmaybe-uninitialized.
> > + +While host gcc version is 4.4.7 in centos6, it +did not recognize
> > -std=gnu11, -Wmaybe-uninitialized, +and -flto. + +For native build, use
> > -std=gnu99 to replace -std=gnu11, +and directly remove
> > -Wmaybe-uninitialized and -flto. + +Upstream-Status: Pending +
> > +Signed-off-by: Hongxu Jia
> > <hongxu.jia@windriver.com
> <mailto:hongxu.jia@windriver.com>> +--- +
> gcc.specs | 4
> > ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git
> > a/gcc.specs b/gcc.specs +index 0d4bbda..3802ca6 100644 +--- a/gcc.specs
> > ++++ b/gcc.specs +@@ -2,13 +2,13 @@ + + -D_GNU_SOURCE + +
> > *efivar_cpp_options: +- -Werror -Wall -std=gnu11 -Wextra ++ -Werror -Wall
> > -std=gnu99 -Wextra + + *cpp_options: + + %(efivar_cpp_options) + +
> > *cc1_options: +-+ %(efivar_cpp_options) -Wmaybe-uninitialized
> > -fno-merge-constants -flto -fvisibility=hidden
> > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} +++
> > %(efivar_cpp_options) -fno-merge-constants -fvisibility=hidden
> > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} + +
> > *self_spec: + + %{!shared:%{!static:%{!r:-pie}}}
> > %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now}
> > +-- +2.8.1 + diff --git a/meta/recipes-extended/efivar/efivar_0.24.bb
> <http://efivar_0.24.bb>
> > b/meta/recipes-extended/efivar/efivar_0.24.bb <http://efivar_0.24.bb>
> new file mode 100644 index
> > 0000000..efffde5 --- /dev/null +++
> > b/meta/recipes-extended/efivar/efivar_0.24.bb <http://efivar_0.24.bb> @@
> -0,0 +1,43 @@ +SUMMARY =
> > "Tools to manipulate UEFI variables" +DESCRIPTION = "efivar provides a
> > simple command line interface to the UEFI variable facility" +HOMEPAGE =
> > "https://github.com/rhinstaller/efivar
> <https://github.com/rhinstaller/efivar>" + +LICENSE = "LGPLv2.1"
> > +LIC_FILES_CHKSUM =
> > "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393" + +DEPENDS =
> > "popt" +DEPENDS_append_class-target = " efivar-native" + +COMPATIBLE_HOST
> > = "(i.86|x86_64|arm|aarch64).*-linux" + +SRCREV =
> > "963cb2e5adc145fe00717f94e382f2973f80e753" +SRC_URI =
> > "git://github.com/rhinstaller/efivar.git
> <http://github.com/rhinstaller/efivar.git> \ +
> > file://0002-disable-static-build.patch \ +" +SRC_URI_append_class-target
> > = " file://0001-efivar-fix-for-cross-compile.patch \ +
> > file://0003-efivar-fix-for-cross-compile.patch \ +
> > ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold',
> > 'file://0004-fix-unknow-option-for-gold-linker.patch', '', d)} \ +
> > " +SRC_URI_append_class-native = "
> > file://fix-compile-failure-with-host-gcc-4.6.patch \ +
> > file://allow-multi-definitions-for-native.patch \ +
> > " + +S = "${WORKDIR}/git" + +# Setting CROSS_COMPILE breaks pkgconfig, so
> > just set AR +EXTRA_OEMAKE = "AR=${TARGET_PREFIX}gcc-ar" +
> > +do_compile_prepend() { + sed -i -e s:-Werror::g ${S}/gcc.specs +} +
> > +do_install() { + oe_runmake install DESTDIR=${D} +} +
> > +do_install_append_class-native() { + install -D -m 0755
> > ${B}/src/makeguids ${D}${bindir}/makeguids +} + +BBCLASSEXTEND =
> > "native" +
> >
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> <mailto:Openembedded-core@lists.openembedded.org>
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
> <http://lists.openembedded.org/mailman/listinfo/openembedded-core>
>
>
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core
2017-03-01 7:19 ` Koen Kooi
@ 2017-03-01 8:01 ` Martin Jansa
0 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2017-03-01 8:01 UTC (permalink / raw)
To: Koen Kooi
Cc: openembedded-devel,
Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 18942 bytes --]
I think it's missing pkgconfig
http://lists.openembedded.org/pipermail/openembedded-devel/2017-February/111603.html
and fix is already on ML:
http://lists.openembedded.org/pipermail/openembedded-devel/2017-February/111628.html
If I don't forget I might re-try your earlier upgrade:
http://lists.openembedded.org/pipermail/openembedded-devel/2017-February/111329.html
to see if it works as well with this pkgconfig fix.
But who knows which version they will import into oe-core..
On Wed, Mar 1, 2017 at 8:19 AM, Koen Kooi <koen@dominion.thruhere.net>
wrote:
> Op 28-02-17 om 09:58 schreef Martin Jansa:
> > Agreed with Koen.
> >
> > Everything outside oe-core is meant to be nice little colorful boxes
> which
> > don't depend on each other (as discussed on OEDAM), but whatever intel
> needs
> > has to go to oe-core.
> >
> >> We are aware that this was recently blacklisted in meta-oe, but we
> > were unable to reproduce the issue under any circumstances.
> >
> > And it still fails to build and it will continue to fail even from
> oe-core.
>
> I suspect it's host-gcc related, it's on my plate to fix, but it will take
> a
> few weeks before I can really look at it :/
>
>
> >
> > On Tue, Feb 28, 2017 at 9:33 AM, Koen Kooi <koen@dominion.thruhere.net
> > <mailto:koen@dominion.thruhere.net>> wrote:
> >
> > Op 28-02-17 om 02:09 schreef California Sullivan:
> > > BSPs for platforms using UEFI, such as meta-intel, would like to
> have
> > > this more widely available
> >
> > I guess you're saying "one less git repo to clone"? I don't think
> that's a
> > good enough reason to move it to OE-core.
> >
> > > for future support enhancements.
> >
> > I'm having trouble parsing this, it seems like you're saying that
> having it
> > in meta-oe precludes you from contributing to it?
> >
> > >
> > > This is a direct copy of the recipe from meta-openembedded/meta-oe.
> > >
> > > Signed-off-by: California Sullivan
> > > <california.l.sullivan@intel.com
> > <mailto:california.l.sullivan@intel.com>> --- We
> > > are aware that this was recently blacklisted in meta-oe, but we
> were
> > > unable to reproduce the issue under any circumstances.
> > >
> > > .../efivar/0001-efivar-fix-for-cross-compile.patch | 35
> > > +++++++++++++++++ .../efivar/efivar/0002-disable-static-build.patch
> | 33
> > > ++++++++++++++++ .../efivar/0003-efivar-fix-for-cross-compile.patch
> | 44
> > > +++++++++++++++++++++ .../0004-fix-unknow-option-
> for-gold-linker.patch
> > > | 38 ++++++++++++++++++ .../allow-multi-definitions-
> for-native.patch
> > > | 23 +++++++++++ .../fix-compile-failure-with-host-gcc-4.6.patch
> | 45
> > > ++++++++++++++++++++++ meta/recipes-extended/efivar/efivar_0.24.bb
> > <http://efivar_0.24.bb>
> > > | 43 +++++++++++++++++++++ 7 files changed, 261 insertions(+)
> create mode
> > > 100644
> > > meta/recipes-extended/efivar/efivar/0001-efivar-fix-for-
> cross-compile.patch
> > >
> > >
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> > > create mode 100644
> > > meta/recipes-extended/efivar/efivar/0003-efivar-fix-for-
> cross-compile.patch
> > >
> > >
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/0004-fix-unknow-option-
> for-gold-linker.patch
> > > create mode 100644
> > > meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> > >
> > >
> > create mode 100644
> > meta/recipes-extended/efivar/efivar/fix-compile-failure-
> with-host-gcc-4.6.patch
> > > create mode 100644 meta/recipes-extended/efivar/efivar_0.24.bb
> > <http://efivar_0.24.bb>
> > >
> > > diff --git
> > >
> > a/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> > >
> > b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> > >
> > >
> > new file mode 100644
> > > index 0000000..6f6ca64 --- /dev/null +++
> > >
> > b/meta/recipes-extended/efivar/efivar/0001-efivar-fix-
> for-cross-compile.patch
> > >
> > >
> > @@ -0,0 +1,35 @@
> > > +From 9a3c480af653b37e62d1be04d49fe7a60a80168f Mon Sep 17
> 00:00:00 2001
> > > +From: Kai Kang <kai.kang@windriver.com
> > <mailto:kai.kang@windriver.com>> +Date:
> > > Fri, 25 Sep 2015 18:14:31 +0800 +Subject: [PATCH 1/2] efivar: fix
> for
> > > cross compile + +It builds and calls elf file makeguids to
> generate a
> > > header file which +doesn't work for cross compile. Fix it. +
> > > +Signed-off-by: Kai Kang
> > > <kai.kang@windriver.com
> > <mailto:kai.kang@windriver.com>> + +Upstream-Status:
> > > Pending +Signed-off-by: Hongxu Jia
> > > <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>> + +--- +
> > > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2
> deletions(-)
> > > + +diff --git a/src/Makefile b/src/Makefile +index 5fc7887..1829d22
> > > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -29,8 +29,8 @@
> all :
> > > deps $(TARGETS) + ./guid-symbols.c : include/efivar/efivar-guids.h
> +
> > > ./guids.bin : include/efivar/efivar-guids.h + ./names.bin :
> > > include/efivar/efivar-guids.h +-include/efivar/efivar-guids.h :
> makeguids
> > > guids.txt +- ./makeguids guids.txt guids.bin names.bin \
> > > ++include/efivar/efivar-guids.h : guids.txt ++ makeguids
> guids.txt
> > > guids.bin names.bin \ + guid-symbols.c
> > include/efivar/efivar-guids.h +
> > > + makeguids : CPPFLAGS+=-DEFIVAR_BUILD_ENVIRONMENT +-- +2.4.3 +
> diff
> > > --git
> > > a/meta/recipes-extended/efivar/efivar/0002-disable-
> static-build.patch
> > > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> new
> > > file mode 100644 index 0000000..951b159 --- /dev/null +++
> > > b/meta/recipes-extended/efivar/efivar/0002-disable-static-build.patch
> @@
> > > -0,0 +1,33 @@ +From 126e0d3c1ad74cf5b0abe9e98ec444bcc3c83159 Mon
> Sep 17
> > > 00:00:00 2001 +From: Koen Kooi
> > > <koen.kooi@linaro.org
> > <mailto:koen.kooi@linaro.org>> +Date: Fri, 4 Mar
> > > 2016 14:53:55 +0100 +Subject: [PATCH 2/2] disable static build +
> > > +Signed-off-by: Koen Kooi
> > > <koen.kooi@linaro.org
> > <mailto:koen.kooi@linaro.org>> +
> > +Upstream-Status:
> > > Inappropriate [meta-oe specific] +Signed-off-by: Hongxu Jia
> > > <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>> + +--- +
> > > src/Makefile | 4 ++-- + 1 file changed, 2 insertions(+), 2
> deletions(-)
> > > + +diff --git a/src/Makefile b/src/Makefile +index 1829d22..c7a0ca3
> > > 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -8,9 +8,9 @@
> include
> > > $(TOPDIR)/Make.defaults + + LIBTARGETS=libefivar.so libefiboot.so +
> > > STATICLIBTARGETS=libefivar.a libefiboot.a +-BINTARGETS=efivar
> > > efivar-static ++BINTARGETS=efivar + PCTARGETS=efivar.pc efiboot.pc
> > > +-TARGETS=$(LIBTARGETS) $(STATICLIBTARGETS) $(BINTARGETS)
> $(PCTARGETS)
> > > ++TARGETS=$(LIBTARGETS) $(BINTARGETS) $(PCTARGETS) + +
> LIBEFIBOOT_SOURCES
> > > = crc32.c creator.c disk.c gpt.c linux.c loadopt.c +
> LIBEFIBOOT_OBJECTS =
> > > $(patsubst %.c,%.o,$(LIBEFIBOOT_SOURCES)) +-- +2.4.3 + diff --git
> > >
> > a/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> > >
> > b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> > >
> > >
> > new file mode 100644
> > > index 0000000..3f43f2a --- /dev/null +++
> > >
> > b/meta/recipes-extended/efivar/efivar/0003-efivar-fix-
> for-cross-compile.patch
> > >
> > >
> > @@ -0,0 +1,44 @@
> > > +From 7ead29ca6bb5e280ae07551cc3521281ecf73682 Mon Sep 17
> 00:00:00 2001
> > > +From: Hongxu Jia <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>>
> > > +Date: Sat, 7 May 2016 02:06:47 -0400 +Subject: [PATCH] Makefile:
> fix
> > > efivar.pc not found + +It fixes efivar.pc not found: +... +|
> install -d
> > > -m 755 efivar/0.23-r0/image/usr/lib/pkgconfig/ +| install -m 644
> > > efivar.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; install -m
> 644
> > > efiboot.pc efivar/0.23-r0/image/usr/lib/pkgconfig/ +; +| install:
> cannot
> > > stat 'efivar.pc': No such file or directory +| install: cannot stat
> > > 'efiboot.pc': No such file or directory +| make[1]: *** [install]
> Error
> > > 1 +| make[1]: Leaving directory `efivar/0.23-r0/git/src' +| make:
> ***
> > > [install] Error 2 +| ERROR: oe_runmake failed +... +
> +Upstream-Status:
> > > Pending + +Signed-off-by: Hongxu Jia
> > > <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>> +--- +
> > src/Makefile
> > > | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff
> --git
> > > a/src/Makefile b/src/Makefile +index c7a0ca3..ad9c427 100644 +---
> > > a/src/Makefile ++++ b/src/Makefile +@@ -78,7 +78,9 @@ install :
> all +
> > > ln -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x).$(MAJOR_VERSION);\
> +
> > ln
> > > -fs $(x).$(VERSION) $(DESTDIR)$(libdir)/$(x); ) + $(INSTALL)
> -d -m 755
> > > $(DESTDIR)$(PCDIR) +- $(foreach x, $(PCTARGETS), $(INSTALL) -m 644
> $(x)
> > > $(DESTDIR)$(PCDIR) ;) ++ $(foreach x, $(PCTARGETS),
> $(INSTALL) -m 644
> > > $(TOPDIR)/src/$(x).in $(DESTDIR)$(PCDIR)/$(x) ;\ ++ sed
> -i -e
> > > "s:@@LIBDIR@@:$(libdir):g" -e "s:@@VERSION@@:$(VERSION):g" \ ++
> > > $(DESTDIR)$(PCDIR)/$(x); ) + $(INSTALL) -d -m 755
> > > $(DESTDIR)$(includedir)/efivar + $(foreach x, $(wildcard
> > > $(TOPDIR)/src/include/efivar/*.h), $(INSTALL) -m 644 $(x)
> > > $(DESTDIR)$(includedir)/efivar/$(notdir $(x));) + $(INSTALL)
> -d -m 755
> > > $(DESTDIR)$(bindir) +-- +2.8.1 + diff --git
> > >
> > a/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> > >
> > b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> > >
> > >
> > new file mode 100644
> > > index 0000000..5d50c19 --- /dev/null +++
> > >
> > b/meta/recipes-extended/efivar/efivar/0004-fix-unknow-
> option-for-gold-linker.patch
> > >
> > >
> > @@ -0,0 +1,38 @@
> > > +From b3d35e7dd27a755df5acbe050837885914dbb28b Mon Sep 17
> 00:00:00 2001
> > > +From: Hongxu Jia <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>>
> > > +Date: Tue, 10 May 2016 11:34:50 -0400 +Subject: [PATCH] fix
> unknow
> > > option for gold linker + +- Revert the following patch, since
> oe-core
> > > work with gcc 5 +... +commit 3055a3797f16693dfdd855fa68bc57
> fd900dc408
> > > +Author: Peter Jones <pjones@redhat.com
> > <mailto:pjones@redhat.com>>
> > > +Date: Mon Feb 15 14:15:40 2016 -0500 + + Make gcc.specs work
> with
> > > gcc 6 / binutils 2.26 + + Apparently binutils 2.26 gets real
> picky
> > > about "ld -PIC" vs "ld -fPIC". + + Signed-off-by: Peter Jones
> > > <pjones@redhat.com
> > <mailto:pjones@redhat.com>> +... + +- Remove
> > unknown
> > > option '--add-needed' + +Signed-off-by: Hongxu Jia
> > > <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>> +--- +
> > gcc.specs | 2
> > > +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git
> > > a/gcc.specs b/gcc.specs +index 24fabc2..5b0fdef 100644 +---
> a/gcc.specs
> > > ++++ b/gcc.specs +@@ -14,4 +14,4 @@ + +
> %{!shared:%{!static:%{!r:-pie}}}
> > > %{static:-Wl,-no-fatal-warnings -Wl,-static -static
> -Wl,-z,relro,-z,now}
> > > + + *link: +-+ %{!static:--fatal-warnings} --no-undefined-version
> > > --no-allow-shlib-undefined --add-needed -z now --build-id
> > > %{!static:%{!shared:-PIE}} %{shared:-z relro -PIC} %{static:%<pie}
> +++
> > > %{!static:--fatal-warnings} --no-undefined-version
> > > --no-allow-shlib-undefined -z now --build-id
> %{!static:%{!shared:-pie}}
> > > %{shared:-z relro -fPIC} %{static:%<pie} +-- +2.8.1 + diff --git
> > >
> > a/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> > >
> > b/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> > >
> > >
> > new file mode 100644
> > > index 0000000..87f5555 --- /dev/null +++
> > >
> > b/meta/recipes-extended/efivar/efivar/allow-multi-
> definitions-for-native.patch
> > >
> > >
> > @@ -0,0 +1,23 @@
> > > +Upstream-Status: Pending + +It fails to create .so file when build
> > > efivar-native: + +| lib.o:(*IND*+0x0): multiple definition of
> > > `efi_set_variable' +| lib.o:lib.c:(.text+0xa0): first defined here
> + +Add
> > > link option '-z muldefs' to fix it. + +Signed-off-by: Kai Kang
> > > <kai.kang@windriver.com
> > <mailto:kai.kang@windriver.com>> +--- +diff --git
> > > a/Make.rules b/Make.rules +index d9c0609..874bce0 100644 +---
> > > a/Make.rules ++++ b/Make.rules +@@ -20,6 +20,7 @@ include
> > > $(TOPDIR)/Make.version + $(CCLD) $(ccldflags) $(CPPFLAGS)
> > $(SOFLAGS) \ +
> > > -Wl,-soname,$@.$(MAJOR_VERSION) \ +
> -Wl,--version-script=$(MAP) \ ++
> > > -Wl,-z,muldefs \ + -o $@ $^ $(LDLIBS) + + %.o : %.c diff --git
> > >
> > a/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> > >
> > b/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> > >
> > >
> > new file mode 100644
> > > index 0000000..1c68a29 --- /dev/null +++
> > >
> > b/meta/recipes-extended/efivar/efivar/fix-compile-
> failure-with-host-gcc-4.6.patch
> > >
> > >
> > @@ -0,0 +1,45 @@
> > > +From 1361225abbaba878960f970df39a4570bbc39553 Mon Sep 17
> 00:00:00 2001
> > > +From: Hongxu Jia <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>>
> > > +Date: Thu, 26 May 2016 21:50:01 -0400 +Subject: [PATCH] fix
> compile
> > > failure with older host gcc (<=4.6) + +While host gcc version is
> 4.6.3 in
> > > ubuntu 1204, it +did not recognize -std=gnu11 and
> -Wmaybe-uninitialized.
> > > + +While host gcc version is 4.4.7 in centos6, it +did not
> recognize
> > > -std=gnu11, -Wmaybe-uninitialized, +and -flto. + +For native
> build, use
> > > -std=gnu99 to replace -std=gnu11, +and directly remove
> > > -Wmaybe-uninitialized and -flto. + +Upstream-Status: Pending +
> > > +Signed-off-by: Hongxu Jia
> > > <hongxu.jia@windriver.com
> > <mailto:hongxu.jia@windriver.com>> +--- +
> > gcc.specs | 4
> > > ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff
> --git
> > > a/gcc.specs b/gcc.specs +index 0d4bbda..3802ca6 100644 +---
> a/gcc.specs
> > > ++++ b/gcc.specs +@@ -2,13 +2,13 @@ + + -D_GNU_SOURCE + +
> > > *efivar_cpp_options: +- -Werror -Wall -std=gnu11 -Wextra ++
> -Werror -Wall
> > > -std=gnu99 -Wextra + + *cpp_options: + + %(efivar_cpp_options) + +
> > > *cc1_options: +-+ %(efivar_cpp_options) -Wmaybe-uninitialized
> > > -fno-merge-constants -flto -fvisibility=hidden
> > > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} +++
> > > %(efivar_cpp_options) -fno-merge-constants -fvisibility=hidden
> > > %{!r:%{!fpie:%{!fPIE:%{!fpic:%{!fPIC:%{!fno-pic:-fPIE}}}}}} + +
> > > *self_spec: + + %{!shared:%{!static:%{!r:-pie}}}
> > > %{static:-Wl,-no-fatal-warnings -Wl,-static -static
> -Wl,-z,relro,-z,now}
> > > +-- +2.8.1 + diff --git a/meta/recipes-extended/efivar/
> efivar_0.24.bb
> > <http://efivar_0.24.bb>
> > > b/meta/recipes-extended/efivar/efivar_0.24.bb <
> http://efivar_0.24.bb>
> > new file mode 100644 index
> > > 0000000..efffde5 --- /dev/null +++
> > > b/meta/recipes-extended/efivar/efivar_0.24.bb <
> http://efivar_0.24.bb> @@
> > -0,0 +1,43 @@ +SUMMARY =
> > > "Tools to manipulate UEFI variables" +DESCRIPTION = "efivar
> provides a
> > > simple command line interface to the UEFI variable facility"
> +HOMEPAGE =
> > > "https://github.com/rhinstaller/efivar
> > <https://github.com/rhinstaller/efivar>" + +LICENSE = "LGPLv2.1"
> > > +LIC_FILES_CHKSUM =
> > > "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393" + +DEPENDS =
> > > "popt" +DEPENDS_append_class-target = " efivar-native" +
> +COMPATIBLE_HOST
> > > = "(i.86|x86_64|arm|aarch64).*-linux" + +SRCREV =
> > > "963cb2e5adc145fe00717f94e382f2973f80e753" +SRC_URI =
> > > "git://github.com/rhinstaller/efivar.git
> > <http://github.com/rhinstaller/efivar.git> \ +
> > > file://0002-disable-static-build.patch \ +"
> +SRC_URI_append_class-target
> > > = " file://0001-efivar-fix-for-cross-compile.patch \ +
> > > file://0003-efivar-fix-for-cross-compile.patch \ +
> > > ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold',
> > > 'file://0004-fix-unknow-option-for-gold-linker.patch', '', d)} \ +
> > > " +SRC_URI_append_class-native = "
> > > file://fix-compile-failure-with-host-gcc-4.6.patch \ +
> > > file://allow-multi-definitions-for-native.patch \ +
> > > " + +S = "${WORKDIR}/git" + +# Setting CROSS_COMPILE breaks
> pkgconfig, so
> > > just set AR +EXTRA_OEMAKE = "AR=${TARGET_PREFIX}gcc-ar" +
> > > +do_compile_prepend() { + sed -i -e s:-Werror::g ${S}/gcc.specs
> +} +
> > > +do_install() { + oe_runmake install DESTDIR=${D} +} +
> > > +do_install_append_class-native() { + install -D -m 0755
> > > ${B}/src/makeguids ${D}${bindir}/makeguids +} + +BBCLASSEXTEND =
> > > "native" +
> > >
> >
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > <mailto:Openembedded-core@lists.openembedded.org>
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
> > <http://lists.openembedded.org/mailman/listinfo/openembedded-core>
> >
> >
> >
> >
>
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
[-- Attachment #2: Type: text/html, Size: 27681 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-03-01 8:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-28 1:09 [PATCH 1/1] recipes-extended: Move efivar from meta-openembedded to oe-core California Sullivan
2017-02-28 8:33 ` Koen Kooi
2017-02-28 8:58 ` Martin Jansa
2017-02-28 9:02 ` [oe] " Alexander Kanavin
2017-03-01 7:19 ` Koen Kooi
2017-03-01 8:01 ` Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox