From 352734ff174cd9fc93050d5ee0102e4db17e539e Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Sun, 6 Jan 2019 13:02:42 +0100 Subject: [PATCH] imx8: machines: silence kernel warning The kernel class now sets RDEPENDS_${KERNEL_PACKAGE_NAME}-base so this include needs to do the same, otherwise bitbake emits a warning and the kernel isn't removed. | WARNING: .../linux-yocto_4.19.bb: Variable key RDEPENDS_${KERNEL_PACKAGE_NAME}-base (${KERNEL_PACKAGE_NAME}-image) replaces original key RDEPENDS_kernel-base (). Signed-off-by: Max Krummenacher --- conf/machine/imx8qmmek.conf | 2 +- conf/machine/imx8qxpmek.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/imx8qmmek.conf b/conf/machine/imx8qmmek.conf index 61c9f364..b71dfcad 100644 --- a/conf/machine/imx8qmmek.conf +++ b/conf/machine/imx8qmmek.conf @@ -11,7 +11,7 @@ require conf/machine/include/arm/arch-arm64.inc MACHINE_FEATURES_append = " qca6174" # Don't include kernels in standard images -RDEPENDS_kernel-base = "" +RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" LOADADDR = "" diff --git a/conf/machine/imx8qxpmek.conf b/conf/machine/imx8qxpmek.conf index 9b332d30..61cb51fd 100644 --- a/conf/machine/imx8qxpmek.conf +++ b/conf/machine/imx8qxpmek.conf @@ -10,7 +10,7 @@ require conf/machine/include/arm/arch-arm64.inc MACHINE_FEATURES_append = " qca6174" # Don't include kernels in standard images -RDEPENDS_kernel-base = "" +RDEPENDS_${KERNEL_PACKAGE_NAME}-base = "" LOADADDR = "" -- 2.40.1