Monday, February 8, 2016

How to make full dump recovery.img in mediatek device manually

How to make full dump recovery.img in Mediatek device

Again I'm going to teach you on how to make backup and fulldump your stock Recovery.img in Mediatek Device manually via Terminal Emulator or ADB Command in Mtkdroidtools.
First you need to root your device.

Mediatek Recovery Fulldump






Requirements:
Rooted
Terminal Emulator(download in Playstore)
 MTK droid tools







Procedure:
1) Make sure phone has root shell access (rooted) , if you dont have root then please root with IROOT and install superSU+ binaries.

2) Make sure USB debugging is enabled on the smartphone

3) Download MTK droid tools 2.5.3


4) install PDAnet abd driver package

5) run MTK droid tools and open a new ADB SHELL.

1. First check your mountpoints and partitions via this command:
type this command:
adb shell cat /proc/dumchar_info
via ADB COMMAND in Mtkdroidtools
MTKdroidtools ADB Command

via Terminal Emulator
type this command:
adb shell cat
cat /proc/dumchar_info

2. Then Check for the mountpoints of Recovery.img

3. Type this command:
adb shell mkdir -p /storage/sdcard0/BACKUP

BACKUP folder must created in your SDCARD.

4. Type this command:
adb shell su -c "dd if=/dev/block/recovery of=/storage/sdcard0/BACKUP/recovery.img"
 or
adb shell su -c "dd if=/dev/recovery of=/storage/sdcard0/BACKUP/recovery.img"


You must check your mountpoints usually for new 64  BIT Mediatek device like MT6795 , MT6752 , MT6595 , MT6753 and MT6735

Use this command:
adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/recovery of=/storage/sdcard0/BACKUP/recovery.img"

5. Wait to finish! You can now have backup stock recovery.img
Note: This take only few minutes. check the file size usually not more than 15MB.



Credits:
http://androidcribs.com
mtkdroidtools







other not mention

Labels: , , , ,

How to make full dump in Spreadtrum via ADB command or Terminal Emulator

How to make full dump in Spreadtrum via ADB command or Terminal Emulator.
This method is work in Spreadtrum SC8830 Chipset using ADB COMMAND or Terminal Emulator.
This also work in SC7731 Chipset manually backup your .img files.
Make sure you have enough space on Sdcard.


Spreadtrum backup and fulldump





Requirements:
Terminal emulator (Download via Playstore)

Spreadtrum device





First open terminal emulator
type su
and type this command one by one and wait to finish:

1.)For Boot.img
Type this ⬇

dd if=/dev/block/mmcblk0p16 of=/storage/sdcard0/boot.img

2.)For Cache.img
Type this ⬇

dd if=/dev/block/mmcblk0p18 of=/storage/sdcard0/cache.img

3.)For Fbootlogo.img
Type this ⬇

dd if=/dev/block/mmcblk0p15 of=/storage/sdcard0/fbootlogo.img

4.)For Logo.img
Type this ⬇

dd if=/dev/block/mmcblk0p14 of=/storage/sdcard0/logo.img

5.)For Misc.img
Type this ⬇

dd if=/dev/block/mmcblk0p20 of=/storage/sdcard0/misc.img

6.)For Miscdata.img
Type this ⬇

dd if=/dev/block/mmcblk0p2 of=/storage/sdcard0/miscdata.img

7.)For Prodnv.img
Type this ⬇

dd if=/dev/block/mmcblk0p1 of=/storage/sdcard0/prodnv.img

8.)For Recovery.img
Type this ⬇

dd if=/dev/block/mmcblk0p19 of=/storage/sdcard0/recovery.img

9.)For System.img
Type this ⬇

dd if=/dev/block/mmcblk0p17 of=/storage/sdcard0/system.img

10.)For Userdata.img
Type this ⬇

dd if=/dev/block/mmcblk0p21 of=/storage/sdcard0/userdata.img


This portion is optional since we need this file to complete your backup.

11.)For Wcnfixnv1.img
Type this ⬇

dd if=/dev/block/mmcblk0p7 of=/storage/sdcard0/wcnfixnv1.img

12.)For Wcnfixnv2.img
Type this ⬇

dd if=/dev/block/mmcblk0p8 of=/storage/sdcard0/wcnfixnv2.img

13.)For Wcnmodem.img
Type this ⬇

dd if=/dev/block/mmcblk0p13 of=/storage/sdcard0/wcnmodem.img

14.)For Wcnruntimenv1.img
Type this ⬇

dd if=/dev/block/mmcblk0p9 of=/storage/sdcard0/wcnruntimenv1.img

15.)For Wcnruntimenv2.img
Type this ⬇

dd if=/dev/block/mmcblk0p10 of=/storage/sdcard0/wcnruntimenv2.img

16.)For Wdsp.img
Type this ⬇

dd if=/dev/block/mmcblk0p12 of=/storage/sdcard0/wdsp.img

17.)For Wfixnv1.img
Type this ⬇

dd if=/dev/block/mmcblk0p3 of=/storage/sdcard0/wfixnv1.img

18.)For Wfixnv2.img
Type this ⬇

dd if=/dev/block/mmcbpk0p4 of=/storage/sdcard0/wfixnv2.img

19.)For Wmodem.img
Type this ⬇

dd if=/dev/block/mmcblk0p11 of=/storage/sdcard0/wmodem.img

20.)For Wruntimenv1.img
Type this ⬇

dd if=/dev/block/mmcblk0p5 of=/storage/sdcard0/w
runtimenv1.img

21.)For Wruntimenv2.img
Type this ⬇

dd if=/dev/block/mmcblk0p6 of=/storage/sdcard0/wruntimenv2.img


Note: sdcard0 is your external sdcard
          sdcard 1 is your internal sdcard

Congrats you have backup now and can use this for future  purposes like Porting Rom and Recovery.


Credits:
http://androidcribs.com
Rowel Crisostomo
My23 group
other not mention

Labels: , , ,