mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
tools: kwboot: Allow to use -b without image path as the last getopt() option
Currently it is possible to call "kwboot -b -t /dev/ttyUSB0" but not to
call "kwboot -b /dev/ttyUSB0".
Fix it by not trying to process the last argv[], which is non-getopt()
option (tty path) as the image path for -b.
Fixes: c513fe47dc
("tools: kwboot: Allow to use option -b without image path")
Reported-by: Marcel Ziswiler <marcel@ziswiler.com>
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Marcel Ziswiler <marcel@ziswiler.com>
Tested-by: Marcel Ziswiler <marcel@ziswiler.com>
This commit is contained in:
parent
c153576d8d
commit
9e6d71d2b5
1 changed files with 1 additions and 1 deletions
|
@ -1770,7 +1770,7 @@ main(int argc, char **argv)
|
|||
bootmsg = kwboot_msg_boot;
|
||||
if (prev_optind == optind)
|
||||
goto usage;
|
||||
if (argv[optind] && argv[optind][0] != '-')
|
||||
if (optind < argc - 1 && argv[optind] && argv[optind][0] != '-')
|
||||
imgpath = argv[optind++];
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue