installing recovery and custom roms
hello,
this is a quick guide i made to help make it easier to install recovery tools and custom roms
I found that all the other guides were half correct and found myself referencing many different guides to figure it out
so after spending 5 hours doing my first kindle fire
about 1 hour on my second kindle fire
and about 5 mins on my third kindle fire
I think this guide should help some people out
thanks in advance to everyone and please leave constructive criticism or comments!!
//after rooting
---------------------------------
make sure you have in >C:\program files\android\android-sdk\platform-tools
---------------------------------
-log
-last log
-update.zip
-updaterecovery.img //if you are using Clockwork Mod
or
-twrp.img //if you are using TWRP recovery
---------------------------------
//cmd.exe
>cd C:\program files\android\android-sdk\platform-tools
>adb devices
//make sure device shows up
>adb shell
>cd cache
>mkdir recovery
>exit
>adb push log /cache/recovery/
>adb push last_log /cache/recovery/
>adb push update.zip /sdcard/
>adb push updaterecovery.img /sdcard/
>adb shell
>dd if=/sdcard/updaterecovery.img of=/dev/block/platform/mmci-omap-hs.1/by-name/recovery
>idme bootmode 0x5001
>reboot
//on kindle go through CM recovery and install update.zip
>adb reboot
>adb shell
>mount sdcard
>exit
>adb push stockrecovery.img /sbin/
>adb shell
>dd if=/sbin/stockrecovery.img of=/dev/block/platform/mmci-omap-hs.1/by-name/recovery
>idme bootmode 0x5001
>exit
>adb reboot
follow this lower section if you are using TWRP 2.0
----------------------------------------------------------------
//if you are using twrp you need to change
//"updaterecovery.img" >to> "twrp.img" ---see below
// "dd if=/sdcard/twrp.img of=/dev/block/platform/mmci-omap-hs.1/by-name/recovery
//
>adb push twrp.img /sdcard/
// if you are using twrp.img and are stuck in bootloop
//you need to do the following commands after twrp 2.0 installs and reboots
>adb shell
>idme bootmode 4000
>reboot
----------------------------------------------------------------
//all done