image-uefi.conf 723 B

1234567891011121314151617181920212223242526
  1. # Location of EFI files inside EFI System Partition
  2. EFIDIR ?= "/EFI/BOOT"
  3. # Location of UKI inside EFI System Partition
  4. EFI_UKI_DIR ?= "/EFI/Linux"
  5. # Prefix where ESP is mounted inside rootfs. Set to empty if package is going
  6. # to be installed to ESP directly
  7. EFI_PREFIX ?= "/boot"
  8. # Location inside rootfs.
  9. EFI_FILES_PATH = "${EFI_PREFIX}${EFIDIR}"
  10. EFI_UKI_PATH = "${EFI_PREFIX}${EFI_UKI_DIR}"
  11. # The EFI name for the architecture
  12. EFI_ARCH ?= "INVALID"
  13. EFI_ARCH:x86 = "ia32"
  14. EFI_ARCH:x86-64 = "x64"
  15. EFI_ARCH:aarch64 = "aa64"
  16. EFI_ARCH:arm = "arm"
  17. EFI_ARCH:riscv32 = "riscv32"
  18. EFI_ARCH:riscv64 = "riscv64"
  19. EFI_ARCH:loongarch64 = "loongarch64"
  20. # Determine name of bootloader image
  21. EFI_BOOT_IMAGE ?= "boot${EFI_ARCH}.efi"