diff options
author | 2018-04-10 22:28:21 +0200 | |
---|---|---|
committer | 2018-04-10 22:32:16 +0200 | |
commit | 53ab0eccff8863424297a24dbdf71320236d0382 (patch) | |
tree | fe5e6bbc89987e3b6101871f4e9307c58a6f59bf /conf/machine/dragonboard-410c.conf | |
parent | a58d5544369eefd3325b08e89885a4d723500d00 (diff) | |
download | meta-qcom-image-fstypes.tar.gz meta-qcom-image-fstypes.tar.bz2 meta-qcom-image-fstypes.zip |
machine: do not use _append for IMAGE_FSTYPESimage-fstypes
As discussed on https://github.com/ndechesne/meta-qcom/issues/61, using _append
will modify IMAGE_FSTYPES unconditionnally and won't give DISTRO a chance to
override.
Let's set sane, default settings using ?= (or +=). If a DISTRO wants to change
them, we suppose they know what they do, and overwrite correctly.
Reported-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'conf/machine/dragonboard-410c.conf')
-rw-r--r-- | conf/machine/dragonboard-410c.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/dragonboard-410c.conf b/conf/machine/dragonboard-410c.conf index 59ec458..617ac87 100644 --- a/conf/machine/dragonboard-410c.conf +++ b/conf/machine/dragonboard-410c.conf @@ -28,6 +28,6 @@ SD_QCOM_BOOTIMG_ROOTFS ?= "mmcblk1p7" UBOOT_MACHINE ?= "dragonboard410c_defconfig" # Assemble SD card -IMAGE_FSTYPES_append = " wic.gz wic.bmap" +IMAGE_FSTYPES += "wic.gz wic.bmap" WKS_FILE = "dragonboard410c-sd.wks" WKS_FILE_DEPENDS = "firmware-qcom-dragonboard410c-bootloader-sdcard" |