]> git.baikalelectronics.ru Git - uboot.git/commit
tools: kwboot: Check if baudrate value is supported before sending image
authorPali Rohár <pali@kernel.org>
Mon, 7 Mar 2022 18:03:08 +0000 (19:03 +0100)
committerStefan Roese <sr@denx.de>
Mon, 14 Mar 2022 13:04:18 +0000 (14:04 +0100)
commit478a8fe0cd126326ef2e236a0601c2fa95d86532
tree38b26bcbf02bb43f86cfc4cad2d33b99b52dec67
parentebbb8db3a0bd1662ca43f7c4b414adbea2659112
tools: kwboot: Check if baudrate value is supported before sending image

Call kwboot_open_tty() which baudrate value which was specified at the
command line by option -B. This function returns error if baudrate is not
supported by selected tty device.

Initial baudrate for image transfer is always 115200, so call
kwboot_tty_change_baudrate() with value 115200 immediately after
kwboot_open_tty() if baudrate specified by option -B is different than
115200.

This makes kwboot fail immediately, informing that baudrate is unsupported,
instead of failing only after the first part of image is already sent.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
tools/kwboot.c