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/include/qcom-apq8016.inc | |
parent | a58d5544369eefd3325b08e89885a4d723500d00 (diff) | |
download | meta-qcom-53ab0eccff8863424297a24dbdf71320236d0382.tar.gz meta-qcom-53ab0eccff8863424297a24dbdf71320236d0382.tar.bz2 meta-qcom-53ab0eccff8863424297a24dbdf71320236d0382.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/include/qcom-apq8016.inc')
-rw-r--r-- | conf/machine/include/qcom-apq8016.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/qcom-apq8016.inc b/conf/machine/include/qcom-apq8016.inc index ffb1517..5861a7e 100644 --- a/conf/machine/include/qcom-apq8016.inc +++ b/conf/machine/include/qcom-apq8016.inc @@ -23,7 +23,7 @@ PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-qcomlt" # Fastboot expects an ext4 image, which needs to be 4096 aligned -IMAGE_FSTYPES_append = " ext4.gz" +IMAGE_FSTYPES ?= "ext4.gz" IMAGE_ROOTFS_ALIGNMENT = "4096" QCOM_BOOTIMG_KERNEL_BASE ?= "0x80000000" |