From 2385e130f5f2b13d9c1a0783953d1bb303a7f655 Mon Sep 17 00:00:00 2001 From: Gerard Salvatella Date: Wed, 17 Apr 2019 14:19:58 +0200 Subject: conf: machine: update IMAGE_FSTYPE appends According to the Yocto manual v.2.6.1 (https://www.yoctoproject.org/docs/2.6.1/mega-manual/mega-manual.html#var-IMAGE_FSTYPES): Due to the way the OpenEmbedded build system processes this variable, you cannot update its contents by using _append or _prepend. You must use the += operator to add one or more options to the IMAGE_FSTYPES variable. Signed-off-by: Gerard Salvatella --- conf/machine/include/colibri-imx6ull.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf/machine/include/colibri-imx6ull.inc') diff --git a/conf/machine/include/colibri-imx6ull.inc b/conf/machine/include/colibri-imx6ull.inc index 347ff66..9031c33 100644 --- a/conf/machine/include/colibri-imx6ull.inc +++ b/conf/machine/include/colibri-imx6ull.inc @@ -1,5 +1,5 @@ IMAGE_CLASSES += "image_type_tezi" -IMAGE_FSTYPES_append = " teziimg" +IMAGE_FSTYPES += "teziimg" TORADEX_PRODUCT_IDS = "0036 0040 0044 0045" TORADEX_PRODUCT_IDS[0036] = "imx6ull-colibri-eval-v3.dtb" TORADEX_PRODUCT_IDS[0040] = "imx6ull-colibri-wifi-eval-v3.dtb" -- cgit v1.2.3