* [PATCH 1/1] fix operator precedence in qemuarm64-bookworm
@ 2023-04-18 10:14 Felix Moessbauer
2023-05-03 14:48 ` Anton Mikanovich
0 siblings, 1 reply; 2+ messages in thread
From: Felix Moessbauer @ 2023-04-18 10:14 UTC (permalink / raw)
To: isar-users; +Cc: Felix Moessbauer
Instead of using the += operator, we need to use the :append operator to
add IMAGE_FSTYPES for that target. Otherwise, the additional types are
evaluated first and by that, weak assignments ( ?= ) are ignored.
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
meta-isar/conf/multiconfig/qemuarm64-bookworm.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-isar/conf/multiconfig/qemuarm64-bookworm.conf b/meta-isar/conf/multiconfig/qemuarm64-bookworm.conf
index a04c9d1f..714e4d73 100644
--- a/meta-isar/conf/multiconfig/qemuarm64-bookworm.conf
+++ b/meta-isar/conf/multiconfig/qemuarm64-bookworm.conf
@@ -5,5 +5,5 @@
MACHINE ?= "qemuarm64"
DISTRO ?= "debian-bookworm"
-IMAGE_FSTYPES += "wic.xz"
+IMAGE_FSTYPES:append = " wic.xz"
IMAGER_INSTALL += "${GRUB_BOOTLOADER_INSTALL}"
--
2.34.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-03 14:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-18 10:14 [PATCH 1/1] fix operator precedence in qemuarm64-bookworm Felix Moessbauer
2023-05-03 14:48 ` Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox