]> code.ossystems Code Review - openembedded-core.git/commitdiff
wic: support ontrackdm6aux3 partitions
authorAlexandre Belloni <alexandre.belloni@free-electrons.com>
Tue, 7 Apr 2015 10:21:59 +0000 (12:21 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 8 Apr 2015 22:11:07 +0000 (23:11 +0100)
ontrack dm6 aux3 is a type of partition required to be able to boot a Freescale
mxs based platform.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/wic/utils/partitionedfs.py

index 2d74b6b67c21b231998f0545d46ed8ea26dfd3f0..bb99c6a6c1fbba1f9d46d1553865edfb31f93d37 100644 (file)
@@ -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"