diff options
author | Samuli Piippo <samuli.piippo@qt.io> | 2025-07-09 10:03:44 +0000 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@qt.io> | 2025-07-09 11:43:27 +0000 |
commit | 44dae6e198269460d835f7c3aed5952438b80e1b (patch) | |
tree | fa0fabae422b32d28ce67f51d4c493812a115c60 | |
parent | 589a22cdd1c11a3c868b9f5535049b8fa520093d (diff) |
The .wks file for stm32mp15-eval has a typo that prevents wic image
builds. Do quick and dirty fix for the file until fixed upstream.
Task-number: QTBUG-131531
Change-Id: Ibce8eb084c8beaf939d1758398538988adc1c86f
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
-rw-r--r-- | recipes-qt/images/b2qt-embedded-qt6-image.bbappend | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-qt/images/b2qt-embedded-qt6-image.bbappend b/recipes-qt/images/b2qt-embedded-qt6-image.bbappend new file mode 100644 index 0000000..1d89213 --- /dev/null +++ b/recipes-qt/images/b2qt-embedded-qt6-image.bbappend @@ -0,0 +1,4 @@ +IMAGE_CMD:wic:prepend () { + # fix typo in the wks file + sed -i -e '/userfspart/s/userfs//' ${WKS_FULL_PATH} +} |