3

I am able to run fastboot commands via command prompt on my Windows machine when the phone is booted into fastboot manually by holding: volume up + volume down + power

Is there a way in Android to programmically boot into fastboot and run the command without the need of using an external machine to push commands?

Mike Laren
  • 8,028
  • 17
  • 51
  • 70
Nick
  • 9,285
  • 33
  • 104
  • 147

1 Answers1

1

No, there's not. The closest you can do is wipe the phone and reset it to factory settings using an intent, but I suspect that isn't what you're looking for.

Chris Thompson
  • 35,167
  • 12
  • 80
  • 109
  • Is there any third party `.jar` or option to do this? Or if I manually boot into fastboot is there a way to emulate the pc commands if I have the kernel stored locally? – Nick Jun 08 '12 at 12:39
  • You need to be connected to something via the USB port. Once you do that, you can easily enter fastboot and send images, data, etc. – Chris Thompson Jun 08 '12 at 20:14