
Originally Posted by
compywiz
Is there possibly some commands I can enter into terminal on the droid to partition it right on there? If rom manager does it, there must be a way right?
indeed, I'm looking into it right now. I see that in /data/data/com.koushikdutta.rommanager/files/ there are a number of utilities, including parted, which is the utility you need to manage partitions.
/data/data/com.koushikdutta.rommanager/files/parted --help
Gives you a large number of options, definitely including the ones you will need.
Code:
parted /dev/block/mmcblk0 print
Lists off my 3 partitions (fat32, ext2 apps2sd, 128mb swap)
From the looks of it, you should be able to use the "rm" option to remove partitions and then the "mkpart" option to create a new single partition that covers the whole SD card. I haven't tried it myself, so I recommend:
A). back up the droid to the SD card
B). back up everything on the SD card to a PC
C). unmount the SD card
D). delete all three partitions
E). create a new partition the full size of the SD card
F). Not sure if you need to actually format the partition or if the droid will do that on its own when you reboot. There isn't an mkfs.vfat included with rommanager, so you might need to do that on a PC, still. I would guess that the droid has the ability to auto-partition and format a new card built in
THIS IS JUST MY GUESS:
Code:
parted /dev/mmcblk0 rm 0
parted /dev/mmcblk0 rm 1
parted /dev/mmcblk0 rm 2
parted /dev/mmcblk0 mkpartfs primary fat32 0s -1s