View Single Post
Posts: 3 | Thanked: 0 times | Joined on Feb 2012
#28
Originally Posted by michaaa62 View Post
Well, the first part of the solution #2 reads in fat letters:The explanations for solution #2 are rather sparse and, be warned, require additional knowledge in the latter stages!

Your Emmc partioning scheme is crippled now! And has no swap!
Restoring anything now is just a waste of time because you first have to correct things!

You create the file named 'table' with a text editor, may it be nano, vi or leafpad, and copy and paste the content of the wiki or create a custom layout. Or use the echo command for this
Code:
 echo "unit: sectors
/dev/mmcblk0p1 : start=       64, size= 39854080, Id= 0
/dev/mmcblk0p2 : start= 39854144, size= 16777216, Id= 5
/dev/mmcblk0p3:  start= 56631360, size=  4194304, Id=83
/dev/mmcblk0p4 : start= 60825664, size=  1572864, Id=82
/dev/mmcblk0p5 : start= 39854160, size=  9765680, Id=83
/dev/mmcblk0p6 : start= 49619856, size=  7011504, Id=83" > table
These lines are all just one command, best copy and paste it, but make sure the content is what you want!
You have to dumb this 'table' to the device
Code:
sfdisk --no-reread /dev/mmcblk0 < table
The MyDocs partition is disabled, so that Maemo does not produce any errors. After a needed reboot, you should apply the file systems
Thanks michaaa for solving the problem.