diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-04-07 12:21:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-09 07:43:52 +0100 |
commit | 939fca9de24e6750baa9ba066daafdda85b4a216 (patch) | |
tree | 09152e594d69da1e3da43c3e00a78bebd482114b /scripts/lib/wic/utils | |
parent | 8bf5afb118e837aa7f7b2108e52a6b98a8c349b5 (diff) | |
download | poky-939fca9de24e6750baa9ba066daafdda85b4a216.tar.gz |
wic: support ontrackdm6aux3 partitions
ontrack dm6 aux3 is a type of partition required to be able to boot a Freescale
mxs based platform.
(From OE-Core rev: aa2d05c58992810a5f816eef8078facf03a07e3c)
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/utils')
-rw-r--r-- | scripts/lib/wic/utils/partitionedfs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index 2d74b6b67c..bb99c6a6c1 100644 --- a/scripts/lib/wic/utils/partitionedfs.py +++ b/scripts/lib/wic/utils/partitionedfs.py | |||
@@ -294,6 +294,8 @@ class Image: | |||
294 | parted_fs_type = "fat32" | 294 | parted_fs_type = "fat32" |
295 | elif p['fstype'] == "msdos": | 295 | elif p['fstype'] == "msdos": |
296 | parted_fs_type = "fat16" | 296 | parted_fs_type = "fat16" |
297 | elif p['fstype'] == "ontrackdm6aux3": | ||
298 | parted_fs_type = "ontrackdm6aux3" | ||
297 | else: | 299 | else: |
298 | # Type for ext2/ext3/ext4/btrfs | 300 | # Type for ext2/ext3/ext4/btrfs |
299 | parted_fs_type = "ext2" | 301 | parted_fs_type = "ext2" |