summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorViswanath Kraleti <quic_vkraleti@quicinc.com>2023-12-05 15:04:41 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-08 16:58:33 +0000
commit36b66553a734221d436ab0d08d9fae77324a8212 (patch)
treeb4a1dcd2d64cc295f40efe9ed899708a592b54c7 /meta/conf
parent7d06e4e30b39a901a3d0b263d5de43f954c3270b (diff)
downloadpoky-36b66553a734221d436ab0d08d9fae77324a8212.tar.gz
image-uefi.conf: Add EFI_UKI_PATH variable
UEFI bootloader specification says the primary place for UKI images is the /EFI/Linux/ directory under $boot. Defining a varaible for the same to reuse in all UEFI-related packages. (From OE-Core rev: f32a3f55a6602bb71effe28c931ac387f71af640) Signed-off-by: Viswanath Kraleti <quic_vkraleti@quicinc.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/image-uefi.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/image-uefi.conf b/meta/conf/image-uefi.conf
index 18351e7e3c..aec91bcfe2 100644
--- a/meta/conf/image-uefi.conf
+++ b/meta/conf/image-uefi.conf
@@ -1,12 +1,16 @@
1# Location of EFI files inside EFI System Partition 1# Location of EFI files inside EFI System Partition
2EFIDIR ?= "/EFI/BOOT" 2EFIDIR ?= "/EFI/BOOT"
3 3
4# Location of UKI inside EFI System Partition
5EFI_UKI_DIR ?= "/EFI/Linux"
6
4# Prefix where ESP is mounted inside rootfs. Set to empty if package is going 7# Prefix where ESP is mounted inside rootfs. Set to empty if package is going
5# to be installed to ESP directly 8# to be installed to ESP directly
6EFI_PREFIX ?= "/boot" 9EFI_PREFIX ?= "/boot"
7 10
8# Location inside rootfs. 11# Location inside rootfs.
9EFI_FILES_PATH = "${EFI_PREFIX}${EFIDIR}" 12EFI_FILES_PATH = "${EFI_PREFIX}${EFIDIR}"
13EFI_UKI_PATH = "${EFI_PREFIX}${EFI_UKI_DIR}"
10 14
11# The EFI name for the architecture 15# The EFI name for the architecture
12EFI_ARCH ?= "INVALID" 16EFI_ARCH ?= "INVALID"