View Single Post
Old 10-14-2016, 07:14 PM   #72
plus
Member
plus began at the beginning.
 
Posts: 24
Karma: 12
Join Date: Jul 2016
Device: k4nt, T63HD-JD
Wine would not even let you install drivers for the first step. I used Windows 8 in a KVM and handed over the USB controller.

Using Linux, this would be so much easier (debian example):
Code:
1.) # apt-get update && apt-get install -y adb rkflashkit
2.) # rkflashkit backup @misc misc.img backup @kernel kernel.img \
backup @boot boot.img backup @recovery recovery.img \
backup @backup backup.img backup @cache cache.img \
backup @system system.img \
backup @userdata userdata.img backup @kpanic kpanic.img
3.) # rkflashkit flash @recovery TWRP_recovery_JDRead_T63_v1.img
But I have no idea about rockchip tools on OS X.

[update]

Maybe this one?
https://sourceforge.net/projects/rkf...flashtool-6.0/

Power off your T63 (power button for 7 seconds), connect the USB cable, press prev+next+power for at least 3 seconds. Check if your T63 is in bootloader mode:
Code:
# rkflashtool p
Then backup all partitions:
Code:
# rkflashtool r misc >misc.img
rkflashtool r kernel >kernel.img
rkflashtool r boot >boot.img
rkflashtool r recovery >recovery.img
rkflashtool r backup >backup.img
rkflashtool r userdata >userdata.img
rkflashtool r kpanic >kpanic.img
rkflashtool r system >system.img
And flash TWRP recovery:
Code:
# rkflashtool w recovery <TWRP_recovery_JDRead_T63_v1.img

Last edited by plus; 10-14-2016 at 09:17 PM. Reason: rkflashtool
plus is offline   Reply With Quote