mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
(From OE-Core rev: 05e9650410c4cd87b5722c04adc8fbfb829bc7a2) Signed-off-by: Jialing Zhang <zhangjialing@loongson.cn> Signed-off-by: Qizheng Zhu <zhuqizheng@loongson.cn> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
603 B
Plaintext
23 lines
603 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}"
|
|
|
|
# The EFI name for the architecture
|
|
EFI_ARCH ?= "INVALID"
|
|
EFI_ARCH:x86 = "ia32"
|
|
EFI_ARCH:x86-64 = "x64"
|
|
EFI_ARCH:aarch64 = "aa64"
|
|
EFI_ARCH:arm = "arm"
|
|
EFI_ARCH:riscv32 = "riscv32"
|
|
EFI_ARCH:riscv64 = "riscv64"
|
|
EFI_ARCH:loongarch64 = "loongarch64"
|
|
|
|
# Determine name of bootloader image
|
|
EFI_BOOT_IMAGE ?= "boot${EFI_ARCH}.efi"
|