aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/utils
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@free-electrons.com>2015-04-07 12:21:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-09 07:43:52 +0100
commit939fca9de24e6750baa9ba066daafdda85b4a216 (patch)
tree09152e594d69da1e3da43c3e00a78bebd482114b /scripts/lib/wic/utils
parent8bf5afb118e837aa7f7b2108e52a6b98a8c349b5 (diff)
downloadopenembedded-core-contrib-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.py2
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:
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"