|
Posted at 10/6/2015 04:44:01
Only Author
2#
Last edited by sghazagh In 10/6/2015 04:47 Editor
Hi,
You can easily do it by:
1- Making a file like "/usr/local/bin/boot_to_android.sh" and copy these codes in it:
- #!/bin/bash
- sudo dd if=/dev/zero of=/dev/block/mtd/by-name/misc bs=16k count=3
- sudo sync
- sudo reboot
Copy the code
2- Make the file executable. On command prompt type:
- $ sudo chmod +x /usr/local/bin/boot_to_android.sh
Copy the code
3- Execute the script and you will reboot to Android:
Cheers,
|
|