ci: include .img files for archiving RMM in FIP
Update the collect_build_artefacts function to also
archive .img files when packaging RMM for FIP.
Change-Id: I126ba9a4e076b2dcfb6f18d7cc327d421f6811fc
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
diff --git a/script/build_package.sh b/script/build_package.sh
index 2e45da0..6c928be 100755
--- a/script/build_package.sh
+++ b/script/build_package.sh
@@ -177,7 +177,7 @@
return
fi
- if ! find "$from" \( -name "*.bin" -o -name '*.elf' -o -name '*.dtb' -o -name '*.axf' -o -name '*.stm32' \) -exec cp -t "${to:?}" '{}' +; then
+ if ! find "$from" \( -name "*.bin" -o -name '*.elf' -o -name '*.dtb' -o -name '*.axf' -o -name '*.stm32' -o -name '*.img' \) -exec cp -t "${to:?}" '{}' +; then
echo "You probably are running local CI on local repositories."
echo "Did you set 'dont_clean' but forgot to run 'distclean'?"
die