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 <[email protected]> --- meta/conf/image-uefi.conf | 4 ++++ 1 file changed, 4 insertions(+) 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 @@ # 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" -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#191809): https://lists.openembedded.org/g/openembedded-core/message/191809 Mute This Topic: https://lists.openembedded.org/mt/102988899/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
