diff options
author | Daniel Ammann <daniel.ammann@bytesatwork.ch> | 2019-07-25 12:31:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-27 22:46:08 +0100 |
commit | d7a026d43461a04a974d9431b26a4d121764f47e (patch) | |
tree | 99afd5b51f76c3b6da754015ffdffec6a72ebe6a /bitbake | |
parent | f9a20524fe4e580a5b38f1c2360faec0529d353f (diff) | |
download | poky-d7a026d43461a04a974d9431b26a4d121764f47e.tar.gz |
bitbake: toaster: Sync list of fs_types with oe-core
(Bitbake rev: 1dddfe3512b6390958abb91b21f074568ae4e8db)
Signed-off-by: Daniel Ammann <daniel.ammann@bytesatwork.ch>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/orm/models.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 41a9f819df..bb6b5decff 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py | |||
@@ -965,12 +965,12 @@ class TargetSDKFile(models.Model): | |||
965 | class Target_Image_File(models.Model): | 965 | class Target_Image_File(models.Model): |
966 | # valid suffixes for image files produced by a build | 966 | # valid suffixes for image files produced by a build |
967 | SUFFIXES = { | 967 | SUFFIXES = { |
968 | 'btrfs', 'cpio', 'cpio.gz', 'cpio.lz4', 'cpio.lzma', 'cpio.xz', | 968 | 'btrfs', 'container', 'cpio', 'cpio.gz', 'cpio.lz4', 'cpio.lzma', |
969 | 'cramfs', 'elf', 'ext2', 'ext2.bz2', 'ext2.gz', 'ext2.lzma', 'ext4', | 969 | 'cpio.xz', 'cramfs', 'ext2', 'ext2.bz2', 'ext2.gz', 'ext2.lzma', |
970 | 'ext4.gz', 'ext3', 'ext3.gz', 'hdddirect', 'hddimg', 'iso', 'jffs2', | 970 | 'ext3', 'ext3.gz', 'ext4', 'ext4.gz', 'f2fs', 'hddimg', 'iso', 'jffs2', |
971 | 'jffs2.sum', 'multiubi', 'qcow2', 'squashfs', 'squashfs-lzo', | 971 | 'jffs2.sum', 'multiubi', 'squashfs', 'squashfs-lz4', 'squashfs-lzo', |
972 | 'squashfs-xz', 'tar', 'tar.bz2', 'tar.gz', 'tar.lz4', 'tar.xz', 'ubi', | 972 | 'squashfs-xz', 'tar', 'tar.bz2', 'tar.gz', 'tar.lz4', 'tar.xz', 'ubi', |
973 | 'ubifs', 'vdi', 'vmdk', 'wic', 'wic.bmap', 'wic.bz2', 'wic.gz', 'wic.lzma' | 973 | 'ubifs', 'wic', 'wic.bz2', 'wic.gz', 'wic.lzma' |
974 | } | 974 | } |
975 | 975 | ||
976 | target = models.ForeignKey(Target) | 976 | target = models.ForeignKey(Target) |