Skip to content

Commit

Permalink
Change /system from ext2 to ext3
Browse files Browse the repository at this point in the history
Even though the stock rom mounts /system as ext2, formatting it as ext3 will be
better.   Mounting an ext3 fs as ext2 will just ignore the journaling which
will be ok for us.  Also recovery should follow the format in the edify
scripting, so this is only for corner cases anyway.

Change-Id: I3beebc85360d714f5ce43898957bea8deaa3580f
  • Loading branch information
nemith committed Feb 21, 2011
1 parent 07dee02 commit 9ae7465
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion recovery.fstab
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 0 additions & 3 deletions releasetools/encore_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9ae7465

Please sign in to comment.