Exemplo n.º 1
0
 private void RebootTempRecoveryThread()
 {
     Fastboot.ExecuteFastbootCommandNoReturn(Fastboot.FormFastbootCommand(this, "boot", recovery));
 }
Exemplo n.º 2
0
 private void OemlockThread()
 {
     Fastboot.ExecuteFastbootCommandNoReturn(Fastboot.FormFastbootCommand(this, "oem lock"));
 }
Exemplo n.º 3
0
 /// <summary>
 /// erase specifik partition over fastboot mode
 /// </summary>
 public void FastbootErase(string file)
 {
     Fastboot.ExecuteFastbootCommandNoReturn(Fastboot.FormFastbootCommand(this, "erase", file));
 }
Exemplo n.º 4
0
 private void FastbootRebootThread()
 {
     Fastboot.ExecuteFastbootCommandNoReturn(Fastboot.FormFastbootCommand(this, "reboot"));
 }
Exemplo n.º 5
0
 private void FastbootFlashImgThread()
 {
     Fastboot.ExecuteFastbootCommandNoReturn(Fastboot.FormFastbootCommand(this, "flash", FlashImgCmd));
 }