forked from littleguy77/jelos.org
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ab0tj/main
Add instructions for ARC-D Android wipe
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
You will need to wipe the Android partition to boot into ROCKNIX. | ||
|
||
###### WARNING - This will remove Android completely from your device. | ||
|
||
- Install ADB on your computer if you don't already have it. [How to Install and Use ADB, the Android Debug Bridge Utility](https://www.howtogeek.com/125769/how-to-install-and-use-abd-the-android-debug-bridge-utility/) | ||
|
||
- From power off and sd ejected, hold down power and volume down to get into Android recovery | ||
|
||
- Connect the device to your computer via USB using the "DC" port on the device. | ||
|
||
- Switch ADB into root mode using `adb root` - You may get a timeout error here, continue on anyway. | ||
|
||
- If you would like a backup of your Android partition, run `adb pull /dev/block/mmcblk0 android.img` | ||
|
||
- Get an ADB shell with `adb shell` | ||
|
||
- Wipe the Android partition: `dd if=/dev/zero of=/dev/block/mmcblk0 bs=4M` This will take a few minutes and when it is done you will get an "out of space" message. | ||
|
||
- Exit the shell `exit` | ||
|
||
- Insert your ROCKNIX SD card, and run `adb reboot` | ||
|
||
- You should now be booting ROCKNIX! |