Kamotekid wrote:I'm noob using Adb, i manage to connect on my device. I get stuck on pushing and flashing my device. The recovery image is on c/android-sdk-windows/platform-tools/recovery.img. Thnx
You may want to check out what I'm about to say, I haven't done this on the revue... but from reading the first post and adding my knowledge of adb....
First enable ADB debugging on your revue, and enter the local IP of your computer with android-sdk
1. CD to ADB's directory in cmd (without quotes and parenthesis, and without the ":"): "CD (**ADB DIRECTORY HERE***)" (mine is "c:\program files (x86)\android\android-sdk\platform-tools"; so I would type in exactly: cd c:\program files (x86)\android\android-sdk\platform-tools
2. Connect to ADB (using your the local IP of your revue, for this example, I used mine)
:adb connect 192.168.1.114
3. Run ADB with Root
:adb root
you should get the message "restarting adbd as root"
4. Reconnect to Revue once it has restarted (again, replace YOUR LOCAL ip with the one below)
:adb connect 192.168.1.114
5. Take your Recovery.img and place it IN the SAME FOLDER that ADB is located in (simple copy + paste, and approve admin privileges if you're on win7)
-- Technically you can skip this step, but it just makes it much easier. Instead of following this step, you could move straight to step #6 and enter without quotes, and with the actually c:\"directory" :adb push "c:\your\local\dir\with\recovery" /tmp/recovery.img
6. Push recovery.img to revue.
:adb push recovery /tmp/recovery.img
7. Flash recovery.img to revue
:adb shell flash_image revovery /tmp/recovery.img
@KamoteKid, make sure you've done everything right, make sure once you got root and it restarts, that you connect again.
If that doesn't work, try starting CMD as admin. Also, just open file explorer, find the directory of the recovery.img then copy and paste the directory into cmd
adb push (your copy+paste)\recovery /tmp/recovery.img
And yes, make sure your command is as follows :adb push recovery /tmp/recovery.img
From looking at the first post, the command listed doesn't LOOK right, from doing things similar to this on my xoom, which could very well be different from this; with "adb push local remote" I have to leave leave .img off the command for the "local" part. So one last time "adb push recovery /tmp/recovery.img"
Hope something in post has helped ya
And if I am wrong about the ".img" on the "local" part of the command, please correct me somebody.