summaryrefslogtreecommitdiff
path: root/conf/machine/colibri-imx7-emmc.conf
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2019-04-23 09:48:52 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2019-04-23 09:55:04 +0200
commitb5904553f9960e154f63f46d5a8f119e3002469e (patch)
tree76faf38853016fe6b8b3356b66d6589828dc5ee9 /conf/machine/colibri-imx7-emmc.conf
parent2385e130f5f2b13d9c1a0783953d1bb303a7f655 (diff)
conf: machine: fix image_fstype for colibri-imx6ull and colibri-imx7-emmc
With the move to use '+=' in the assignment the parsing order of the files matters, as assignments with '=' will delete all previously parsed '+=' assignments. Change all assignments to '+='. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'conf/machine/colibri-imx7-emmc.conf')
-rw-r--r--conf/machine/colibri-imx7-emmc.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/colibri-imx7-emmc.conf b/conf/machine/colibri-imx7-emmc.conf
index 1163711..5ec8dea 100644
--- a/conf/machine/colibri-imx7-emmc.conf
+++ b/conf/machine/colibri-imx7-emmc.conf
@@ -20,7 +20,7 @@ PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex"
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex"
UBOOT_MACHINE ?= "colibri_imx7_emmc_defconfig"
-IMAGE_FSTYPES = "wic.gz tar.xz"
+IMAGE_FSTYPES += "wic.gz tar.xz"
# wic support
WKS_FILE = "sdimage-bootpart.wks"
WIC_CREATE_EXTRA_ARGS_append = " --no-fstab-update"