Add support for '-h' (help). https://github.com/PaulStoffregen/teensy_loader_cli/pull/26 --- teensy_loader_cli.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/teensy_loader_cli.c b/teensy_loader_cli.c index d4a6cc5..0a06209 100644 --- a/teensy_loader_cli.c +++ b/teensy_loader_cli.c @@ -37,7 +37,8 @@ void usage(const char *err) { if(err != NULL) fprintf(stderr, "%s\n\n", err); fprintf(stderr, - "Usage: teensy_loader_cli --mcu= [-w] [-h] [-n] [-b] [-v] \n" + "Usage: teensy_loader_cli --mcu= [-h] [-w] [-n] [-b] [-v] \n" + "\t-h : Print this help message\n" "\t-w : Wait for device to appear\n" "\t-r : Use hard reboot if device not online\n" "\t-s : Use soft reboot if device not online (Teensy3.x only)\n" @@ -1081,6 +1082,7 @@ void parse_flag(char *arg) int i; for(i=1; arg[i]; i++) { switch(arg[i]) { + case 'h': usage(NULL); break; case 'w': wait_for_device_to_appear = 1; break; case 'r': hard_reboot_device = 1; break; case 's': soft_reboot_device = 1; break; -- 2.7.4 ='/guix/refs/?id=a1acec2fe9bbf8aa95f922efc9d8bba6d7eba172'>refslogtreecommitdiff
AgeCommit message (Expand)Author
2022-01-13bootloader: grub: Fix serial mode....* gnu/bootloader/grub.scm (grub-setup-io): Fix serial mode display by declaring the serial property before the terminal_input and terminal_output properties. Mathieu Othacehe