summaryrefslogtreecommitdiff
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
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>
-rw-r--r--conf/machine/colibri-imx6ull.conf2
-rw-r--r--conf/machine/colibri-imx7-emmc.conf2
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/colibri-imx6ull.conf b/conf/machine/colibri-imx6ull.conf
index 751882c..e7f103b 100644
--- a/conf/machine/colibri-imx6ull.conf
+++ b/conf/machine/colibri-imx6ull.conf
@@ -24,7 +24,7 @@ UBOOT_BINARY = "u-boot-nand.imx"
UBOOT_MAKE_TARGET = "u-boot-nand.imx"
UBOOT_MACHINE ?= "colibri-imx6ull_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"
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"