summaryrefslogtreecommitdiffstats
path: root/tools/releasetools/common.py
diff options
context:
space:
mode:
authorBrandon Bennett <bennetb@gmail.com>2011-11-19 16:02:04 -0700
committerAdnan Begovic <adnan@cyngn.com>2015-10-06 17:51:19 -0700
commit470ea4cc706087ff859f30d13e9f1077f07e5329 (patch)
treed0f4de442f28b49b0263b2e9b82c116e30f3f05b /tools/releasetools/common.py
parentd27ccf78ae89386414627b741fac2059dec864b7 (diff)
downloadbuild-470ea4cc706087ff859f30d13e9f1077f07e5329.zip
build-470ea4cc706087ff859f30d13e9f1077f07e5329.tar.gz
build-470ea4cc706087ff859f30d13e9f1077f07e5329.tar.bz2
Add ext2, ext3, and vfat to releasetools
Support some non-standard partition that may be found in recovery.fstab Conflicts: tools/releasetools/common.py Change-Id: I0026a1d3ae5d432db10150d1a15f7bc8e7a6054b
Diffstat (limited to 'tools/releasetools/common.py')
-rw-r--r--tools/releasetools/common.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/releasetools/common.py b/tools/releasetools/common.py
index 982e398..cdb5b7f 100644
--- a/tools/releasetools/common.py
+++ b/tools/releasetools/common.py
@@ -1364,7 +1364,10 @@ PARTITION_TYPES = {
"ext4": "EMMC",
"emmc": "EMMC",
"f2fs": "EMMC",
- "squashfs": "EMMC"
+ "squashfs": "EMMC",
+ "ext2": "EMMC",
+ "ext3": "EMMC",
+ "vfat": "EMMC" }
}
def GetTypeAndDevice(mount_point, info):