summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-01 11:55:13 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-06 22:32:42 +0100
commit45f3bdce4423387acf0e8e303f40a59294943370 (patch)
tree0c9e0c77ea350d139cc9f85a9b0080b5dd86907a /meta/conf/machine
parentb5f38c5ce3d16d79076cd5e0f43337bbc9be9d99 (diff)
downloadpoky-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/conf/machine')
-rw-r--r--meta/conf/machine/include/qemu.inc2
-rw-r--r--meta/conf/machine/include/riscv/qemuriscv.inc2
-rw-r--r--meta/conf/machine/include/x86/x86-base.inc2
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc
index c143e37f71..79016ad9cc 100644
--- a/meta/conf/machine/include/qemu.inc
+++ b/meta/conf/machine/include/qemu.inc
@@ -8,7 +8,7 @@ MACHINE_FEATURES = "alsa bluetooth usbgadget screen vfat"
8 8
9MACHINEOVERRIDES =. "qemuall:" 9MACHINEOVERRIDES =. "qemuall:"
10 10
11IMAGE_FSTYPES += "tar.bz2 ext4" 11IMAGE_FSTYPES += "tar.zst ext4.zst"
12 12
13# Don't include kernels in standard images 13# Don't include kernels in standard images
14RDEPENDS:${KERNEL_PACKAGE_NAME}-base = "" 14RDEPENDS:${KERNEL_PACKAGE_NAME}-base = ""
diff --git a/meta/conf/machine/include/riscv/qemuriscv.inc b/meta/conf/machine/include/riscv/qemuriscv.inc
index 65cbfd66ee..3596127202 100644
--- a/meta/conf/machine/include/riscv/qemuriscv.inc
+++ b/meta/conf/machine/include/riscv/qemuriscv.inc
@@ -11,7 +11,7 @@ KEEPUIMAGE = "no"
11 11
12SERIAL_CONSOLES ?= "115200;ttyS0 115200;hvc0" 12SERIAL_CONSOLES ?= "115200;ttyS0 115200;hvc0"
13 13
14IMAGE_FSTYPES += "ext4 wic.qcow2" 14IMAGE_FSTYPES += "ext4.zst wic.qcow2"
15 15
16WKS_FILE ?= "qemuriscv.wks" 16WKS_FILE ?= "qemuriscv.wks"
17 17
diff --git a/meta/conf/machine/include/x86/x86-base.inc b/meta/conf/machine/include/x86/x86-base.inc
index fc6c39148d..fc8200d8f0 100644
--- a/meta/conf/machine/include/x86/x86-base.inc
+++ b/meta/conf/machine/include/x86/x86-base.inc
@@ -8,7 +8,7 @@
8MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \ 8MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
9 acpi serial usbgadget alsa" 9 acpi serial usbgadget alsa"
10 10
11IMAGE_FSTYPES ?= "wic" 11IMAGE_FSTYPES ?= "wic.zst"
12 12
13KERNEL_IMAGETYPE ?= "bzImage" 13KERNEL_IMAGETYPE ?= "bzImage"
14 14