efibootmgr_18.bb 800 B

123456789101112131415161718192021222324252627282930
  1. DESCRIPTION = "Linux user-space application to modify the EFI Boot Manager."
  2. SUMMARY = "EFI Boot Manager"
  3. HOMEPAGE = "https://github.com/rhboot/efibootmgr"
  4. SECTION = "base"
  5. LICENSE = "GPL-2.0-or-later"
  6. LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
  7. DEPENDS = "efivar popt"
  8. COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux"
  9. SRC_URI = "git://github.com/rhinstaller/efibootmgr.git;protocol=https;branch=main"
  10. SRCREV = "c3f9f0534e32158f62c43564036878b93b9e0fd6"
  11. inherit pkgconfig
  12. # The directory under the ESP that the default bootloader is found in. When
  13. # wic uses a subdirectory, this should use the same one too.
  14. EFIDIR ?= "/"
  15. EXTRA_OEMAKE += "'EFIDIR=${EFIDIR}'"
  16. CFLAGS += " -Wno-error"
  17. do_install () {
  18. oe_runmake install DESTDIR="${D}"
  19. }
  20. CLEANBROKEN = "1"