diff --git a/pages/common/adb-reboot.md b/pages/common/adb-reboot.md new file mode 100644 index 0000000000..821d9aba4f --- /dev/null +++ b/pages/common/adb-reboot.md @@ -0,0 +1,20 @@ +# adb reboot + +> Reboot a connected Android device or emulator. +> More information: . + +- Reboot the device normally: + +`adb reboot` + +- Reboot the device into bootloader mode: + +`adb reboot bootloader` + +- Reboot the device into recovery mode: + +`adb reboot recovery` + +- Reboot the device into fastboot mode: + +`adb reboot fastboot`