From 1ebde9be9a10df83243baa840913ad37c2a2ed3f Mon Sep 17 00:00:00 2001 From: Christopher Clark Date: Wed, 23 Dec 2020 17:03:10 -0800 Subject: xen, linux-yocto-dev, RPi4: weaker assign for KBRANCH and KMACHINE Switch to use ?= to set KBRANCH_raspberrypi4-64 to make it easier to override elsewhere when needed for switching to a different kernel branch. Also make the same change for KMACHINE_raspberrypi4-64 to match how it is assigned in the meta-yocto-bsp layer. Signed-off-by: Christopher Clark Signed-off-by: Bruce Ashfield --- .../raspberrypi/recipes-kernel/linux/linux-yocto-dev.bbappend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dynamic-layers/raspberrypi') diff --git a/dynamic-layers/raspberrypi/recipes-kernel/linux/linux-yocto-dev.bbappend b/dynamic-layers/raspberrypi/recipes-kernel/linux/linux-yocto-dev.bbappend index 85d6febe..2a0416f7 100644 --- a/dynamic-layers/raspberrypi/recipes-kernel/linux/linux-yocto-dev.bbappend +++ b/dynamic-layers/raspberrypi/recipes-kernel/linux/linux-yocto-dev.bbappend @@ -5,6 +5,6 @@ DEFAULT_CMDLINE := "${CMDLINE}" XEN_LINUX_CMDLINE ?= "console=hvc0 clk_ignore_unused earlycon=xenboot debug root=/dev/mmcblk0p2 rootwait" CMDLINE = "${@bb.utils.contains('DISTRO_FEATURES', 'xen', '${XEN_LINUX_CMDLINE}', '${DEFAULT_CMDLINE}', d)}" -KBRANCH_raspberrypi4-64 = "standard/bcm-2xxx-rpi" -KMACHINE_raspberrypi4-64 = "bcm-2xxx-rpi4" +KBRANCH_raspberrypi4-64 ?= "standard/bcm-2xxx-rpi" +KMACHINE_raspberrypi4-64 ?= "bcm-2xxx-rpi4" COMPATIBLE_MACHINE_raspberrypi4-64 = "(raspberrypi4-64)" -- cgit v1.2.3-54-g00ecf