blob: 882a0e720c2d56809e72af87ad240a99931686ff [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
Andrew Geisslerd1e89492021-02-12 15:35:20 -060011# The EFI name for the architecture
12EFI_ARCH ?= "INVALID"
13EFI_ARCH_x86 = "ia32"
14EFI_ARCH_x86-64 = "x64"
15EFI_ARCH_aarch64 = "aa64"
16EFI_ARCH_arm = "arm"
17
Brad Bishopa34c0302019-09-23 22:34:48 -040018# Determine name of bootloader image
Andrew Geisslerd1e89492021-02-12 15:35:20 -060019EFI_BOOT_IMAGE ?= "boot${EFI_ARCH}.efi"