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

Commit 7b1a1d81 authored by Brandon Bennett's avatar Brandon Bennett Committed by Rashed Abdel-Tawab
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 79ddfaac
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1632,7 +1632,10 @@ PARTITION_TYPES = {
    "ext4": "EMMC",
    "emmc": "EMMC",
    "f2fs": "EMMC",
    "squashfs": "EMMC"
    "squashfs": "EMMC",
    "ext2": "EMMC",
    "ext3": "EMMC",
    "vfat": "EMMC"
}

def GetTypeAndDevice(mount_point, info):