From 2e0b2d41cf5b2186bc534a9d9f55a62c952ea236 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 14 Nov 2020 08:53:49 -0800 Subject: linux-raspberrypi: Do not use += with append append operator and += when used together results in undefined behaviour in bitbake Signed-off-by: Khem Raj --- recipes-kernel/linux/linux-raspberrypi.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes-kernel') diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc index 4e0d4d0..5fa5889 100644 --- a/recipes-kernel/linux/linux-raspberrypi.inc +++ b/recipes-kernel/linux/linux-raspberrypi.inc @@ -34,7 +34,7 @@ CMDLINE ?= "dwc_otg.lpm_enable=0 ${SERIAL} root=/dev/mmcblk0p2 rootfstype=ext4 r CMDLINE_append = ' ${@oe.utils.conditional("ENABLE_KGDB", "1", "kgdboc=serial0,115200", "", d)}' # Disable rpi logo on boot -CMDLINE_append += ' ${@oe.utils.conditional("DISABLE_RPI_BOOT_LOGO", "1", "logo.nologo", "", d)}' +CMDLINE_append = ' ${@oe.utils.conditional("DISABLE_RPI_BOOT_LOGO", "1", "logo.nologo", "", d)}' # You can define CMDLINE_DEBUG as "debug" in your local.conf or distro.conf # to enable kernel debugging. -- cgit v1.2.3-54-g00ecf