From: Alexandre Belloni Date: Tue, 7 Apr 2015 10:21:59 +0000 (+0200) Subject: wic: support ontrackdm6aux3 partitions X-Git-Tag: yocto-4.0~26334 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa2d05c58992810a5f816eef8078facf03a07e3c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git wic: support ontrackdm6aux3 partitions ontrack dm6 aux3 is a type of partition required to be able to boot a Freescale mxs based platform. Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index 2d74b6b67c2..bb99c6a6c1f 100644 --- a/scripts/lib/wic/utils/partitionedfs.py +++ b/scripts/lib/wic/utils/partitionedfs.py @@ -294,6 +294,8 @@ class Image: parted_fs_type = "fat32" elif p['fstype'] == "msdos": parted_fs_type = "fat16" + elif p['fstype'] == "ontrackdm6aux3": + parted_fs_type = "ontrackdm6aux3" else: # Type for ext2/ext3/ext4/btrfs parted_fs_type = "ext2"