mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
* LDFLAGS += "-fuse-ld=bfd" in the recipe doesn't work and it still fails to build with ld-is-gold in DISTRO_FEATURES removal of this line sent to master in: https://lists.openembedded.org/g/openembedded-core/message/185167 * the most important ones are the 1st which removes --add-needed and the last which removes src/include/workarounds.mk completely while 2-4 patches just update src/include/workarounds.mk for the last one to apply cleanly * alternatively we can bump SRCREV to latest 38 as master did in: https://git.openembedded.org/openembedded-core/commit/?id=4df808c616f847d90203582fd950a49bb8360dd0 which brings 23 commits, but instead of adding 5 more patches allows to remove 5 (From OE-Core rev: d5c7ec0be32aa75fa7973840adf5251d22018766) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
42 lines
1.4 KiB
BlitzBasic
42 lines
1.4 KiB
BlitzBasic
SUMMARY = "Tools to manipulate UEFI variables"
|
|
DESCRIPTION = "efivar provides a simple command line interface to the UEFI variable facility"
|
|
HOMEPAGE = "https://github.com/rhboot/efivar"
|
|
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=6626bb1e20189cfa95f2c508ba286393"
|
|
|
|
COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
|
|
|
|
SRC_URI = "git://github.com/rhinstaller/efivar.git;branch=main;protocol=https \
|
|
file://0001-docs-do-not-build-efisecdb-manpage.patch \
|
|
file://0001-src-Makefile-build-util.c-separately-for-makeguids.patch \
|
|
file://efisecdb-fix-build-with-musl-libc.patch \
|
|
file://0001-Fix-invalid-free-in-main.patch \
|
|
file://0001-Remove-deprecated-add-needed-linker-flag.patch \
|
|
file://0002-Add-T-workaround-for-GNU-ld-2.36.patch \
|
|
file://0003-Set-LC_ALL-C-to-force-English-output-from-ld.patch \
|
|
file://0004-LLD-fix-detection-and-remove-not-needed-workarounds.patch \
|
|
file://0005-Revamp-efi_well_known_-variable-handling.patch \
|
|
"
|
|
SRCREV = "1753149d4176ebfb2b135ac0aaf79340bf0e7a93"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig
|
|
|
|
export CCLD_FOR_BUILD = "${BUILD_CCLD}"
|
|
|
|
do_compile() {
|
|
oe_runmake ERRORS= HOST_CFLAGS="${BUILD_CFLAGS}" HOST_LDFLAGS="${BUILD_LDFLAGS}"
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
RRECOMMENDS:${PN}:class-target = "kernel-module-efivarfs"
|
|
|
|
CLEANBROKEN = "1"
|