Skip to content
Snippets Groups Projects

oniro-image: switch image compression from bz2 to gz

Merged Zygmunt Krynicki requested to merge zyga/oniro:tweak/gz-images into kirkstone
All threads resolved!
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
@@ -31,15 +31,16 @@ IMAGE_FEATURES:append = " read-only-rootfs"
IMAGE_FSTYPES:append = " squashfs"
WKS_FILE:raspberrypi4-64 ?= "x-raspberrypi.wks.in"
IMAGE_FSTYPES:append:raspberrypi4-64 = " wic.gz wic.bmap"
WKS_FILE:seco-intel-b68 ?= "x-gpt-efi-disk.wks.in"
IMAGE_FSTYPES:append:seco-intel-b68 = " wic.bz2 wic.bmap"
IMAGE_FSTYPES:append:seco-intel-b68 = " wic.gz wic.bmap"
# We avoid any other fstypes (for qemu) by default as the OS depends on a
# specific partition table provided through the wic configuration.
IMAGE_FSTYPES:qemux86 ?= "wic wic.bz2"
IMAGE_FSTYPES:qemux86 ?= "wic wic.gz"
WKS_FILE:qemux86 ?= "x-gpt-efi-disk.wks.in"
IMAGE_FSTYPES:qemux86-64 ?= "wic wic.bz2"
IMAGE_FSTYPES:qemux86-64 ?= "wic wic.gz"
WKS_FILE:qemux86-64 ?= "x-gpt-efi-disk.wks.in"
# Build EFI firmware for x86{,-64} QEMU machine.
WKS_FILE_DEPENDS:qemux86-64 += "ovmf"
Loading