How to root a Kindle Fire on OS X
- Download and extract the Android SDK
- Download BurritoRoot3.apk
- Download and extract Google Apps for Android. Scroll to the bottom of the page and there’s a download link listed next to latest version of CyanogenMod under “Google Apps”
- Download Kindle Fire Market Opener
- Open <extracted Android SDK folder>/tools/android by double-clicking or launching with Terminal
- Install Android SDK Platform-tools and (not sure if it’s required) Android 2.3.3/SDK Platform
- Connect your Kindle to your Mac with USB cable.
- In Terminal, run:
echo "0x1949" >> ~/.android/adb_usb.ini # Adds Amazon vendor ID to list of allowed USB devices cd <extracted Android SDK folder>/platform-tools ./adb start-server # Allows us to execute commands on the device ./adb devices # This should show one device ./adb shell chmod 777 /data/local/tmp # Need to be able to write to tmp folder ./adb install <path to BurritoRoot3.apk>
- Launch BurritoRoot3 on your Kindle
- In Terminal run:
./adb shell /data/local/tmp/BurritoRoot3.bin --root # Roots device ./adb shell /data/local/tmp/BurritoRoot3.bin --install # Installs Superuser app ./adb install <path to Google Apps>/system/app/GoogleServicesFramework.apk # Dependencies ./adb push <path to GApps>/system/app/Vending.apk /system/app/Vending.apk # Marketplace ./adb shell chmod 644 /system/app/Vending.apk # Sets permissions correctly ./adb install <path to Market Opener>/MarketOpener.apk # Puts Marketplace on Carousel # May need to use <a href="http://www.amazon.com/Xian-Geek-File-Expert/dp/B004VMY62Q/ref=cm_cr_pr_product_top">File Expert</a> to install /system/App/Vending.apk
- Restart your Fire, then launch the Marketplace app and follow the instructions
Is this outdated? Leave me a comment so I know!