mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Create new config file defining common variables for all UEFI-related packages (bootloaders, test applications, etc). (From OE-Core rev: 9c4945f1f0607c89e7cb10dda41ab742e169c075) Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin-solenikov@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
501 B
Plaintext
17 lines
501 B
Plaintext
# Location of EFI files inside EFI System Partition
|
|
EFIDIR ?= "/EFI/BOOT"
|
|
|
|
# Prefix where ESP is mounted inside rootfs. Set to empty if package is going
|
|
# to be installed to ESP directly
|
|
EFI_PREFIX ?= "/boot"
|
|
|
|
# Location inside rootfs.
|
|
EFI_FILES_PATH = "${EFI_PREFIX}${EFIDIR}"
|
|
|
|
# Determine name of bootloader image
|
|
EFI_BOOT_IMAGE ?= "bootINVALID.efi"
|
|
EFI_BOOT_IMAGE_x86-64 = "bootx64.efi"
|
|
EFI_BOOT_IMAGE_x86 = "bootia32.efi"
|
|
EFI_BOOT_IMAGE_aarch64 = "bootaa64.efi"
|
|
EFI_BOOT_IMAGE_arm = "bootarm.efi"
|