xref: /openbmc/openbmc/poky/meta/conf/image-uefi.conf (revision 026925dd)
1# 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# 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"
17EFI_ARCH:riscv32 = "riscv32"
18EFI_ARCH:riscv64 = "riscv64"
19
20# Determine name of bootloader image
21EFI_BOOT_IMAGE ?= "boot${EFI_ARCH}.efi"
22