aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Adami <andrea.adami@gmail.com>2017-01-24 23:58:19 +0100
committerAndrea Adami <andrea.adami@gmail.com>2017-02-09 00:04:14 +0100
commit4002e4db59f4acf932ec9168a34e393859b4716e (patch)
tree79eba59a7b413068a2588aa87c25e1a5de9cdf8d
parent3bf35a8a1da5b1ef63acd70988fcb89128297d97 (diff)
downloadmeta-handheld-4002e4db59f4acf932ec9168a34e393859b4716e.tar.gz
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 <andrea.adami@gmail.com>
-rw-r--r--recipes-kernel/linux/linux-kexecboot_4.4.bb4
1 files 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"