Skip to content

Commit

Permalink
qcom-armv8a: fix the freshly introduced warnings
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
lumag committed Nov 22, 2023
1 parent 4a13096 commit 5bc5f5d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions conf/machine/qcom-armv8a.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5bc5f5d

Please sign in to comment.