From: Viswanath Kraleti Date: Tue, 5 Dec 2023 09:34:41 +0000 (+0530) Subject: image-uefi.conf: Add EFI_UKI_PATH variable X-Git-Tag: yocto-5.2~4370 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f32a3f55a6602bb71effe28c931ac387f71af640;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Viswanath Kraleti Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/conf/image-uefi.conf b/meta/conf/image-uefi.conf index 18351e7e3c8..aec91bcfe2b 100644 --- a/meta/conf/image-uefi.conf +++ b/meta/conf/image-uefi.conf @@ -1,12 +1,16 @@ # Location of EFI files inside EFI System Partition EFIDIR ?= "/EFI/BOOT" +# Location of UKI inside EFI System Partition +EFI_UKI_DIR ?= "/EFI/Linux" + # 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}" +EFI_UKI_PATH = "${EFI_PREFIX}${EFI_UKI_DIR}" # The EFI name for the architecture EFI_ARCH ?= "INVALID"