Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 8ad28d4c authored by Brandon Bennett's avatar Brandon Bennett Committed by Michael Bestas
Browse files

Add ext2, ext3, and vfat to releasetools

Support some non-standard partition that may be found in recovery.fstab

Change-Id: I0026a1d3ae5d432db10150d1a15f7bc8e7a6054b
parent 78715b74
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1598,7 +1598,10 @@ PARTITION_TYPES = {
    "ext4": "EMMC",
    "emmc": "EMMC",
    "f2fs": "EMMC",
    "squashfs": "EMMC"
    "squashfs": "EMMC",
    "ext2": "EMMC",
    "ext3": "EMMC",
    "vfat": "EMMC"
}

def GetTypeAndDevice(mount_point, info):