diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-03-30 13:37:15 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-01 08:14:57 +0100 |
commit | 54cd064c669b42d498a5f47a1e4f79d17b3fe3ba (patch) | |
tree | 0edb825f60b3f9142441aac43eaf95a04419a488 /scripts/lib/wic/plugins/imager/direct.py | |
parent | 09548406e156f1b120a82dd13464d29306c63606 (diff) | |
download | poky-54cd064c669b42d498a5f47a1e4f79d17b3fe3ba.tar.gz |
wic: allow only supported fstypes
Restricted possible values of --fstype to the list of
supported types. This should catch incorrect values
when .wks file is being parsed.
Removed checks for empty fstype and mentioning of
unsupported fstype 'ontrackdm6aux3'.
(From OE-Core rev: 21af89a6d44ccea6aef975ffd2483a8fad1231de)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/plugins/imager/direct.py')
-rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index 67fd183670..79b948a739 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py | |||
@@ -487,8 +487,6 @@ class PartitionedImage(): | |||
487 | parted_fs_type = "fat32" | 487 | parted_fs_type = "fat32" |
488 | elif part.fstype == "msdos": | 488 | elif part.fstype == "msdos": |
489 | parted_fs_type = "fat16" | 489 | parted_fs_type = "fat16" |
490 | elif part.fstype == "ontrackdm6aux3": | ||
491 | parted_fs_type = "ontrackdm6aux3" | ||
492 | else: | 490 | else: |
493 | # Type for ext2/ext3/ext4/btrfs | 491 | # Type for ext2/ext3/ext4/btrfs |
494 | parted_fs_type = "ext2" | 492 | parted_fs_type = "ext2" |