adb-reboot
Reboot a connected Android device
TLDR
Reboot the device normally
SYNOPSIS
adb reboot [bootloader|recovery|sideload|sideload-auto-reboot]
DESCRIPTION
adb reboot restarts the connected Android device. Without arguments, it performs a normal reboot. With mode arguments, it can reboot into special modes like bootloader (fastboot), recovery, or sideload for flashing firmware or installing updates.
PARAMETERS
bootloader
Reboot into bootloader/fastboot mode for low-level flashingrecovery
Reboot into recovery mode for system recovery or updatessideload
Reboot into sideload mode for ADB sideloadingsideload-auto-reboot
Reboot into sideload mode and automatically reboot after sideload completes
CAVEATS
Bootloader and recovery modes may require unlocked bootloader or specific device states. Some devices use vendor-specific boot modes. Rebooting to bootloader terminates the adb connection; use fastboot commands afterward.
HISTORY
adb reboot has been available since the initial Android SDK release in 2008. Boot mode options were added to facilitate ROM development and device recovery operations.
