[Guide] Backup/Restore MTK 64 Bit Devices


Recently the new MTK 64 Bit devices like the new MT6795, MT6752, MT6595, MT6753 are becoming famous and more and more people are using. But today I will show you how to backup MT6795, MT6752, MT6595, MT6753. This is really easy and a fast process.
You cannot use MTK Droid Tools to backup your MTK 64 Bit device because MTK Droid Tools is outdated and doesn't support the new 64Bit architecture. So the method will be a little complicated but I have got you covered with a video guide.

Things You Need :            
- ADB Installed In Your PC : Guide, Click Here
- Everything else you need is in the the Guide
- MTK Droid Tools  : Download, Click Here
How To :

- Make sure USB debugging is enabled on the smartphone
- Make Sure You have followed the Things To Do Section
- Press Windows Button + R
- Type CMD
- Press Enter and Command Prompt will Open
a) Type ADB Devices to see if your phone is detected
b) type adb shell df and determine the biggest partition
c) note down the path of the biggest partition
d) check the code below and replace path with your path. Use external sd if possible.
use those ADB commands to backup every single image :

ADB Code :
adb shell mkdir -p /storage/sdcard0/SPFT

adb shell su -c "dd if=/dev/block/mmcblk0boot0 of=/storage/sdcard0/SPFT/preloader.bin bs=512c count=512 skip=4"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/boot of=/storage/sdcard0/SPFT/boot.img"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/cache of=/storage/sdcard0/SPFT/cache.img"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/lk of=/storage/sdcard0/SPFT/lk.bin"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/logo of=/storage/sdcard0/SPFT/logo.bin"

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

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/secro of=/storage/sdcard0/SPFT/secro.img"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/system of=/storage/sdcard0/SPFT/system.img"

adb shell su -c "dd if=/dev/block/platform/mtk-msdc.0/by-name/userdata of=/storage/sdcard0/SPFT/userdata.img"


If you get read only error then use these commands :

- mount -o rw,remount rootfs /

- chmod 777 /mnt/sdcard

Note : Change /mnt/sdcard/ with your own SD card path

After this reboot with ADB command "reboot" without "" or exit and manual reboot.
You should now have your images in a folder called SPFT on your smartphone.

Watch Video Tutorial for easy guide.


[Guide] Backup/Restore MTK 64 Bit Devices [Guide] Backup/Restore MTK 64 Bit Devices Reviewed by MTK Hacker Pro on 1:14 PM Rating: 5

4 comments:

  1. In MT6753 backup other files occur as well, but the preloader happens the following error "dd: block size '512c': illegal number"
    How to backup?

    ReplyDelete

Powered by Blogger.