From 5bc5f5d902c50759f4dd9250171edd91bf533c46 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Wed, 22 Nov 2023 04:24:36 +0300 Subject: [PATCH] qcom-armv8a: fix the freshly introduced warnings Fix the warnings introduced by qcm6490-rb3g2 support: WARNING: KERNEL_DEVICETREE:append:pn-linux-yocto += is not a recommended operator combination, please replace it. WARNING: KERNEL_DEVICETREE:append:pn-linux-yocto += is not a recommended operator combination, please replace it. There is no need to use += together with the append. Signed-off-by: Dmitry Baryshkov --- conf/machine/qcom-armv8a.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/conf/machine/qcom-armv8a.conf b/conf/machine/qcom-armv8a.conf index bbb30de43..4ae1a24d5 100644 --- a/conf/machine/qcom-armv8a.conf +++ b/conf/machine/qcom-armv8a.conf @@ -22,8 +22,11 @@ KERNEL_DEVICETREE ?= " \ qcom/sm8450-hdk.dtb \ " -KERNEL_DEVICETREE:append:pn-linux-yocto += "qcom/qcm6490-idp.dtb" -KERNEL_DEVICETREE:append:pn-linux-yocto += "qcom/qcm6490-rb3.dtb" +# These DT are not upstreamed (yet) and currenty exist only as a patches against linux-yocto +KERNEL_DEVICETREE:append:pn-linux-yocto = " \ + qcom/qcm6490-idp.dtb \ + qcom/qcm6490-rb3.dtb \ +" QCOM_BOOTIMG_PAGE_SIZE[apq8016-sbc] ?= "2048" QCOM_BOOTIMG_ROOTFS ?= "/dev/sda1"