Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58b81bf8 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am a82f2b25: Merge "Support "fastboot reboot bootloader"."

* commit 'a82f2b25':
  Support "fastboot reboot bootloader".
parents 186a38bc a82f2b25
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ void usage(void)
            "                                           flash it\n"
            "  devices                                  list all connected devices\n"
            "  continue                                 continue with autoboot\n"
            "  reboot                                   reboot device normally\n"
            "  reboot [bootloader]                      reboot device, optionally into bootloader\n"
            "  reboot-bootloader                        reboot device into bootloader\n"
            "  help                                     show this help message\n"
            "\n"
@@ -1153,6 +1153,14 @@ int main(int argc, char **argv)
        } else if(!strcmp(*argv, "reboot")) {
            wants_reboot = 1;
            skip(1);
            if (argc > 0) {
                if (!strcmp(*argv, "bootloader")) {
                    wants_reboot = 0;
                    wants_reboot_bootloader = 1;
                    skip(1);
                }
            }
            require(0);
        } else if(!strcmp(*argv, "reboot-bootloader")) {
            wants_reboot_bootloader = 1;
            skip(1);