summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2022-05-16 10:14:29 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2022-05-16 11:36:22 +0200
commit5e9142d80fe87694dab0be5c571fdca835d871ed (patch)
treeb998889a3f58a6667df7992ca93f53148b168194
parentdc7d36ac585166db09ba9afde9d1158c3c6710cc (diff)
machines: follow kernel deployment changesHEADmaster
The kernel binary image is by default deployed into the rootfs, /boot/. openembedded-core changed the way it is done in a not backwards compatible way. I.e. it now RRECOMMENDS instead of RDEPENDS the package which contains the kernel binary image. Commit 1c90b27d2c ("kernel: make kernel-base recommend kernel-image, not depend") So the way to not deploy also changed. Change machines and recipes which want to prevent kernel deployment accordingly. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--conf/machine/apalis-tk1.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/apalis-tk1.conf b/conf/machine/apalis-tk1.conf
index 92cb08b..7c9b8f5 100644
--- a/conf/machine/apalis-tk1.conf
+++ b/conf/machine/apalis-tk1.conf
@@ -35,7 +35,7 @@ WKS_FILE_DEPENDS ?= " \
WKS_FILE = "sdimage-bootpart.wks"
# The kernel lives in a seperate FAT or UBI partition, don't deploy it in /boot
-RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
+RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = ""
PREFERRED_PROVIDER_u-boot = "u-boot"
PREFERRED_PROVIDER_virtual/bootloader = "u-boot"