kiwibuild: extend productmd type/format detection for FEX images

Signed-off-by: Adam Williamson <awilliam@redhat.com>
(cherry picked from commit eb4ba5f637153f0037f05981adea8b35fc0f6b25)
This commit is contained in:
Adam Williamson 2024-11-19 16:49:30 -08:00 committed by Stepan Oksanichenko
parent 2e9baeaf51
commit 567baed60f

View File

@ -19,6 +19,12 @@ KIWIEXTENSIONS = [
# so 'boot' is just a default guess. 'iso' is not a valid
# productmd image type
("boot", [".iso"], "iso"),
("fex", ["erofs.xz"], "erofs.xz"),
("fex", ["erofs.gz"], "erofs.gz"),
("fex", ["erofs"], "erofs"),
("fex", ["squashfs.xz"], "squashfs.xz"),
("fex", ["squashfs.gz"], "squashfs.gz"),
("fex", ["squashfs"], "squashfs"),
]