More ADB Shell ?'sYea, root is required in order to dump any partitions.
Its a working method for every device that has needed an unbrick image made. the first 200MB contain the bootloaders and all the core partitions, after that it loads the kernel and rom. if you were to copy the entire mmcblk0 you would fill your sdcard up pretty quickly and all you would do is effectly make a duplicate of your device, apps, rom etc.
if sbl and aboot havent been broken then it doesnt try to load from the sdcard slot.
#!/sbin/sh
dd if=/dev/block/mmcblk0 of=/storage/extSdCard
that alone should be enough to dump the entire contents of mmcblk0 to a 32gb or larger sdcard. you would then have a "backup" of your phone if you ever then broke it compeletely or found issues with emmc/nand problems (similar to the sgs2 stuff where emmc's were dropping dead)
so long as you have root it will work fine, i merely packaged it up in a flashable zip rather than telling people adb commands because many dont know how to use it. so people flash teh zip and upload the files for me, makes it easy.
i think i answered all your questions, but feel free to quote me and ask more if you have any. i dont follow this thread so i wont notice if you merely just reply.
Code:
#!/sbin/sh
mkdir -p /sdcard/Unbrick_Files/;
dd if=/dev/block/mmcblk0 of=/sdcard/Unbrick_Files/200MB.img bs=4096 count=50000
[COLOR="DarkOrange"];busybox gzip /sdcard/Unbrick_Files/*
;mv /sdcard/Unbrick_Files/200MB.img.gz /sdcard/Unbrick_Files/Unbrick_IMG.gz[/COLOR]
[COLOR="DeepSkyBlue"];chmod -R 777 /sdcard/Unbrick_Files[/COLOR]
I made an unbrick.img, "using your guidance" from my wifes Galaxy S4 ZOOM SM-C105A Using only the following
Code:
#!/sbin/sh
mkdir -p /storage/extSdCard/ZOOM_Unbrick_Files/;
dd if=/dev/block/mmcblk0 of=/storage/extSdCard/ZOOM_Unbrick_Files/200MB.img bs=4096 count=50000
Code:
#!/sbin/sh
mkdir -p /storage/extSdCard/ZOOM_Unbrick_Files/;
dd if=/dev/block/mmcblk0 of=/storage/extSdCard/ZOOM_Unbrick_Files/200MB.img bs=4096 count=50000
;busybox gzip /storage/extSdCard/ZOOM_Unbrick_Files/*;
mv /storage/extSdCard/ZOOM_Unbrick_Files/200MB.img.gz
also the first time I ran it with the chmod on the end and all was processed except for the chmod line it failed for whatever reason
but I still ended up with the same size .img.gz
Code:
#!/sbin/sh
mkdir -p /storage/extSdCard/ZOOM_Unbrick_Files/;
dd if=/dev/block/mmcblk0 of=/storage/extSdCard/ZOOM_Unbrick_Files/200MB.img bs=4096 count=50000
;busybox gzip /storage/extSdCard/ZOOM_Unbrick_Files/*;
mv /storage/extSdCard/ZOOM_Unbrick_Files/200MB.img.gz
;chmod -R 777 /storage/extSdCard/ZOOM_Unbrick_Files
but Does the size of the extSdCard matter for the dumping of the unbrick.img as I used a 16GB class 10 for my above trials is this exeptable
as I would then take the produced .img and put it on a 32 or 64GB card via the instructions in the first post or with alcohol 120% .img software
You have been out right amazing with your willingness to answer basic questions I cannot thank You enough
Last edited: