From bb90a3fd20859f986563c93b683b3b414a5d5bb1 Mon Sep 17 00:00:00 2001 From: Andrea Adami Date: Wed, 25 Jan 2017 00:06:39 +0100 Subject: linux-gcw0-kexecboot_4.0: 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-gcw0-kexecboot_4.0.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-kernel/linux/linux-gcw0-kexecboot_4.0.bb b/recipes-kernel/linux/linux-gcw0-kexecboot_4.0.bb index bba69d9..9fbfdd9 100644 --- a/recipes-kernel/linux/linux-gcw0-kexecboot_4.0.bb +++ b/recipes-kernel/linux/linux-gcw0-kexecboot_4.0.bb @@ -4,8 +4,8 @@ SUMMARY = "GCW Zero kernel embedding a minimalistic kexecboot initramfs" PACKAGES = "" PROVIDES = "" -KERNEL_IMAGE_BASE_NAME = "${KERNEL_IMAGETYPE}-gcw0-kexecboot-${PV}-${MACHINE}" -KERNEL_IMAGE_SYMLINK_NAME = "${KERNEL_IMAGETYPE}-gcw0-kexecboot-${MACHINE}" +KERNEL_IMAGE_BASE_NAME = "gcw0-kexecboot-${PV}-${MACHINE}" +KERNEL_IMAGE_SYMLINK_NAME = "gcw0-kexecboot-${MACHINE}" # RAW for ubiboot KERNEL_IMAGETYPE = "vmlinuz.bin" -- cgit 1.2.3-korg