mirror of
https://git.yoctoproject.org/poky-contrib
synced 2025-05-08 23:52:25 +08:00

An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers. Two recipes in meta-selftest were not converted as they're that way specifically for testing. A change in linux-firmware was also skipped and may need a more manual tweak. (From OE-Core rev: ceda3238cdbf1beb216ae9ddb242470d5dfc25e0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Linux user-space application to modify the EFI Boot Manager."
|
|
SUMMARY = "EFI Boot Manager"
|
|
HOMEPAGE = "https://github.com/rhboot/efibootmgr"
|
|
SECTION = "base"
|
|
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
|
|
|
DEPENDS = "efivar popt"
|
|
|
|
COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
|
|
|
|
SRC_URI = "git://github.com/rhinstaller/efibootmgr.git;protocol=https;branch=master \
|
|
file://0001-remove-extra-decl.patch \
|
|
file://97668ae0bce776a36ea2001dea63d376be8274ac.patch \
|
|
file://0001-src-make-compatible-with-efivar-38.patch \
|
|
"
|
|
SRCREV = "e067160ecef8208e1944002e5d50b275733211fb"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig
|
|
|
|
# The directory under the ESP that the default bootloader is found in. When
|
|
# wic uses a subdirectory, this should use the same one too.
|
|
EFIDIR ?= "/"
|
|
|
|
EXTRA_OEMAKE += "'EFIDIR=${EFIDIR}'"
|
|
|
|
CFLAGS += " -Wno-error"
|
|
|
|
do_install () {
|
|
oe_runmake install DESTDIR="${D}"
|
|
}
|
|
|
|
CLEANBROKEN = "1"
|
|
# https://github.com/rhboot/efivar/issues/202
|
|
COMPATIBLE_HOST:libc-musl = 'null'
|
|
|