board/qemu: Generate sdcard.img with post-image

In order to test AimeeOS A/B filesystem updates, we need a full disk
image just like the Raspberry Pi variant has.
This commit is contained in:
2025-08-21 07:50:00 -05:00
parent d41ad4c55c
commit 66af20213b
5 changed files with 31 additions and 3 deletions

4
ci/Jenkinsfile vendored
View File

@@ -53,8 +53,12 @@ pipeline {
archiveArtifacts('.config')
}
dir('_build/images') {
sh 'zstd -f firmware.img'
sh 'zstd -f sdcard.img'
archiveArtifacts([
'firmware.img.zst',
'rootfs.squashfs',
'sdcard.img.zst',
].join(','))
}
}