diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-01 11:55:13 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-06 22:32:42 +0100 |
| commit | 45f3bdce4423387acf0e8e303f40a59294943370 (patch) | |
| tree | 0c9e0c77ea350d139cc9f85a9b0080b5dd86907a /meta/lib/oeqa | |
| parent | b5f38c5ce3d16d79076cd5e0f43337bbc9be9d99 (diff) | |
| download | poky-45f3bdce4423387acf0e8e303f40a59294943370.tar.gz | |
bitbake/conf: Default to zstd compressed image output
Switch our default qemu images to use .zst compressed images by default
since this is the output format we release during the release process
and is the one that users would prefer to download. This makes the release
process use the actual generated output from the system and avoids post
processing.
(From OE-Core rev: aa5f60d1fcb716a2b2174dffcaf35442bff1f1fb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/gdbserver.py | 1 | ||||
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/runqemu.py | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/gdbserver.py b/meta/lib/oeqa/selftest/cases/gdbserver.py index b6b7c5c473..1c71333190 100644 --- a/meta/lib/oeqa/selftest/cases/gdbserver.py +++ b/meta/lib/oeqa/selftest/cases/gdbserver.py | |||
| @@ -19,6 +19,7 @@ class GdbServerTest(OESelftestTestCase): | |||
| 19 | 19 | ||
| 20 | features = """ | 20 | features = """ |
| 21 | IMAGE_GEN_DEBUGFS = "1" | 21 | IMAGE_GEN_DEBUGFS = "1" |
| 22 | IMAGE_FSTYPES += "tar.bz2" | ||
| 22 | IMAGE_FSTYPES_DEBUGFS = "tar.bz2" | 23 | IMAGE_FSTYPES_DEBUGFS = "tar.bz2" |
| 23 | CORE_IMAGE_EXTRA_INSTALL = "gdbserver" | 24 | CORE_IMAGE_EXTRA_INSTALL = "gdbserver" |
| 24 | """ | 25 | """ |
diff --git a/meta/lib/oeqa/selftest/cases/runqemu.py b/meta/lib/oeqa/selftest/cases/runqemu.py index 74d47a6db1..7ed89e80de 100644 --- a/meta/lib/oeqa/selftest/cases/runqemu.py +++ b/meta/lib/oeqa/selftest/cases/runqemu.py | |||
| @@ -195,6 +195,12 @@ class QemuTest(OESelftestTestCase): | |||
| 195 | cls.cmd_common = "runqemu nographic snapshot" | 195 | cls.cmd_common = "runqemu nographic snapshot" |
| 196 | cls.qemuboot_conf = "%s.qemuboot.conf" % (cls.image_link_name) | 196 | cls.qemuboot_conf = "%s.qemuboot.conf" % (cls.image_link_name) |
| 197 | cls.qemuboot_conf = os.path.join(cls.deploy_dir_image, cls.qemuboot_conf) | 197 | cls.qemuboot_conf = os.path.join(cls.deploy_dir_image, cls.qemuboot_conf) |
| 198 | |||
| 199 | cls.write_config(cls, | ||
| 200 | """ | ||
| 201 | IMAGE_FSTYPES += "tar.bz2" | ||
| 202 | """) | ||
| 203 | |||
| 198 | bitbake(cls.recipe) | 204 | bitbake(cls.recipe) |
| 199 | 205 | ||
| 200 | def _start_qemu_shutdown_check_if_shutdown_succeeded(self, qemu, timeout): | 206 | def _start_qemu_shutdown_check_if_shutdown_succeeded(self, qemu, timeout): |
