blob: aaeff12ccb80c2e476a485bee25c295235de021f [file] [log] [blame]
Brad Bishopa34c0302019-09-23 22:34:48 -04001# Location of EFI files inside EFI System Partition
2EFIDIR ?= "/EFI/BOOT"
3
4# Prefix where ESP is mounted inside rootfs. Set to empty if package is going
5# to be installed to ESP directly
6EFI_PREFIX ?= "/boot"
7
8# Location inside rootfs.
9EFI_FILES_PATH = "${EFI_PREFIX}${EFIDIR}"
10
11# Determine name of bootloader image
Andrew Geissler706d5aa2021-02-12 15:55:30 -060012EFI_BOOT_IMAGE ?= "bootINVALID.efi"
13EFI_BOOT_IMAGE_x86-64 = "bootx64.efi"
14EFI_BOOT_IMAGE_x86 = "bootia32.efi"
15EFI_BOOT_IMAGE_aarch64 = "bootaa64.efi"
16EFI_BOOT_IMAGE_arm = "bootarm.efi"