summaryrefslogtreecommitdiffstats
path: root/recipes-kernel
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2020-11-14 08:53:49 -0800
committerAndrei Gherzan <andrei@gherzan.ro>2020-11-14 23:27:08 +0000
commit2e0b2d41cf5b2186bc534a9d9f55a62c952ea236 (patch)
treecad31b17113ec7b698945b3459e231ea54b3c232 /recipes-kernel
parentb70c7b9021e37ec765f4db9aac0e0e76f617cbac (diff)
downloadmeta-raspberrypi-2e0b2d41cf5b2186bc534a9d9f55a62c952ea236.tar.gz
linux-raspberrypi: Do not use += with append
append operator and += when used together results in undefined behaviour in bitbake Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-kernel')
-rw-r--r--recipes-kernel/linux/linux-raspberrypi.inc2
1 files changed, 1 insertions, 1 deletions
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
34CMDLINE_append = ' ${@oe.utils.conditional("ENABLE_KGDB", "1", "kgdboc=serial0,115200", "", d)}' 34CMDLINE_append = ' ${@oe.utils.conditional("ENABLE_KGDB", "1", "kgdboc=serial0,115200", "", d)}'
35 35
36# Disable rpi logo on boot 36# Disable rpi logo on boot
37CMDLINE_append += ' ${@oe.utils.conditional("DISABLE_RPI_BOOT_LOGO", "1", "logo.nologo", "", d)}' 37CMDLINE_append = ' ${@oe.utils.conditional("DISABLE_RPI_BOOT_LOGO", "1", "logo.nologo", "", d)}'
38 38
39# You can define CMDLINE_DEBUG as "debug" in your local.conf or distro.conf 39# You can define CMDLINE_DEBUG as "debug" in your local.conf or distro.conf
40# to enable kernel debugging. 40# to enable kernel debugging.