i have a android devices boot with u-boot .this devices has a emmc which named in dev as /dev/block/mmcblk0.there is 4 partations on it . /dev/block/mmcblk0p{1,2,3,4} . i had know that mmcblk0p1 is MLO , mmcblk0p2 is u-boot.bin ,mmcblk0p3 is kernel , mmcblk0p4 is recovery.I want to try if i can write the mmcblk directly with dd command in shell. so i use this command to write a file to mmcblk0p3
dd if=FILE_WRITE_IN of=/dev/block/mmcblk0p3
i don't write the mmcblk0p4 ,i think i can recovery my system use the recovery system. but when i reboot my devices,i can even boot into the recovery system. how the u-boot boot the recovery partation ,if the recovery partation depend on the kernel partation? why can't boot the recovery.
ddcommand looks okay, except thatFILE_WRITE_INhad better be auImagekernel file for U-Boot. – sawdust Dec 23 '12 at 23:34