From 4002e4db59f4acf932ec9168a34e393859b4716e Mon Sep 17 00:00:00 2001 From: Andrea Adami Date: Tue, 24 Jan 2017 23:58:19 +0100 Subject: linux-kexecboot_4.4: fix KERNEL_IMAGE_BASE_NAME After commit 849b67b in oe-core it is possible to build multiple types of kernel at one time. This requires KERNEL_IMAGE_BASE_NAME and KERNEL_IMAGE_SYMLINK_NAME must not start with KERNEL_IMAGETYPE prefix as before. Signed-off-by: Andrea Adami --- recipes-kernel/linux/linux-kexecboot_4.4.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-kernel/linux/linux-kexecboot_4.4.bb b/recipes-kernel/linux/linux-kexecboot_4.4.bb index 27f2367..4bb3737 100644 --- a/recipes-kernel/linux/linux-kexecboot_4.4.bb +++ b/recipes-kernel/linux/linux-kexecboot_4.4.bb @@ -21,8 +21,8 @@ KERNEL_IMAGE_MAXSIZE_tosa = "1264" PACKAGES = "" PROVIDES = "" -KERNEL_IMAGE_BASE_NAME = "${KERNEL_IMAGETYPE}-kexecboot-${PV}-${MACHINE}" -KERNEL_IMAGE_SYMLINK_NAME = "${KERNEL_IMAGETYPE}-kexecboot-${MACHINE}" +KERNEL_IMAGE_BASE_NAME = "kexecboot-${PV}-${MACHINE}" +KERNEL_IMAGE_SYMLINK_NAME = "kexecboot-${MACHINE}" INITRAMFS_IMAGE = "initramfs-kexecboot-klibc-image" INITRAMFS_TASK = "${INITRAMFS_IMAGE}:do_image_complete" -- cgit 1.2.3-korg