diff --git a/recovery.fstab b/recovery.fstab index 5691996..f615f12 100644 --- a/recovery.fstab +++ b/recovery.fstab @@ -1,7 +1,7 @@ # mount point fstype device [device2] [fstype2] /boot vfat /dev/block/mmcblk0p1 -/system ext4 /dev/block/mmcblk0p5 NULL ext2 +/system ext4 /dev/block/mmcblk0p5 NULL ext3 /data ext4 /dev/block/mmcblk0p6 NULL ext3 /cache ext4 /dev/block/mmcblk0p7 NULL ext3 /emmc vfat /dev/block/mmcblk0p8 diff --git a/releasetools/encore_common.py b/releasetools/encore_common.py index 53b7e49..e38375a 100755 --- a/releasetools/encore_common.py +++ b/releasetools/encore_common.py @@ -30,6 +30,3 @@ def load_module_from_file(module_name, filename): f.close() return module -# Add vfat to the partition types -PARTITION_TYPES['vfat'] = "EMMC" -PARTITION_TYPES['ext2'] = "EMMC"