blob: 6ef011e23b40ef0f4cf3974ba1a46c07cf2dd61f [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"
Andrew Geissler95ac1b82021-03-31 14:34:31 -050017EFI_ARCH_riscv32 = "riscv32"
18EFI_ARCH_riscv64 = "riscv64"
Andrew Geisslerd1e89492021-02-12 15:35:20 -060019
Brad Bishopa34c0302019-09-23 22:34:48 -040020# Determine name of bootloader image
Andrew Geisslerd1e89492021-02-12 15:35:20 -060021EFI_BOOT_IMAGE ?= "boot${EFI_ARCH}.efi"