summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorJoshua Watt <Joshua.Watt@garmin.com>2023-08-18 10:32:44 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-30 08:43:03 +0100
commitcfa0ad68223beba57f2501083e64657131bd4db1 (patch)
tree26f8f2afbb29b75f0a27ca08f68923064deb5c6b /meta/lib
parent142b6921bde5b22bcd7e0e5e8d895575d0fb6c64 (diff)
downloadpoky-cfa0ad68223beba57f2501083e64657131bd4db1.tar.gz
classes/image_types: Add vfat image type
Adds support for creating FAT formatted file system images (useful for boot partitions on some SoCs). Note that FAT partitions are limited in what they can represent (no symlinks or device files), so they can't really be used for general purpose root file systems. As such, they are skipped when testing for that purpose. (From OE-Core rev: 440fa508d362b8a449beb1b82dd999e980b753b7) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/imagefeatures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py
index a5e069d0be..dc88c222bd 100644
--- a/meta/lib/oeqa/selftest/cases/imagefeatures.py
+++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py
@@ -199,7 +199,7 @@ class ImageFeatures(OESelftestTestCase):
199 image = 'core-image-minimal' 199 image = 'core-image-minimal'
200 200
201 all_image_types = set(get_bb_var("IMAGE_TYPES", image).split()) 201 all_image_types = set(get_bb_var("IMAGE_TYPES", image).split())
202 skip_image_types = set(('container', 'elf', 'f2fs', 'tar.zst', 'wic.zst', 'squashfs-lzo')) 202 skip_image_types = set(('container', 'elf', 'f2fs', 'tar.zst', 'wic.zst', 'squashfs-lzo', 'vfat'))
203 img_types = all_image_types - skip_image_types 203 img_types = all_image_types - skip_image_types
204 204
205 config = """ 205 config = """