ROM Android: Mengubah Partisi ROM
At first boot there will be default partition layout and fastboot mode. Connect it to your pc and change layout if you want, if not just flash cwm and restore your data.
Default partition layout:
misc:1Mb
recovery:5
boot:5
sboot:5
system:150
cache:10
userdata:0 - AUTOSIZE
Fastboot command list and usage:
fastboot oem help - This simple help
fastboot oem cls - Clear screen
fastboot oem part-add name:size - Create new partition with given name and size (in Mb, 0 for autosize all space) - example: fastboot oem part-add system:160 - this will create system partition with size 160Mb
fastboot oem part-resize name:size
- Resize partition with given name to new size (in Mb, 0 for autosize all space
- example: fastboot oem part-resize system:150 - this will resize system partition to 150Mb
fastboot oem part-del name - Delete named partition
fastboot oem part-create-default - Delete curent partition table and create default one
fastboot oem part-read - Reload partition layout from NAND
fastboot oem part-commit - Save curent layout to NAND. All changes to partition layout are tmp. untill commited to nand!
fastboot oem part-list - Display current partition layout
fastboot oem part-clear - Clear current partition layout
fastboot oem format-all - WARNING !!! THIS COMMAND WILL FORMAT COMPLETE NAND (except bootloader)\n - ALSO IT WILL DISPLAY BAD SECTORS IF THERE ARE ANY - !!! THIS IS EQUIVALENT TO TASK 29 !!!