diff options
author | Tom Rini <trini@konsulko.com> | 2018-01-29 08:17:28 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-01-29 08:17:28 -0500 |
commit | 06bfb9f37c03335dd5d0547ab7286f2f74fcbcbb (patch) | |
tree | 48b17d52584bbfdd0108839d9003883445bceaf1 | |
parent | 3703526f1e0a572b1e8e61dea039348b0f260ae1 (diff) | |
parent | ceb328180353f103bb7a3bc75770ed03e9a8fef2 (diff) | |
download | u-boot-06bfb9f37c03335dd5d0547ab7286f2f74fcbcbb.tar.gz |
Merge git://git.denx.de/u-boot-marvell
-rwxr-xr-x | tools/mrvl_uart.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/mrvl_uart.sh b/tools/mrvl_uart.sh index 6b04d7ae2c..6824208902 100755 --- a/tools/mrvl_uart.sh +++ b/tools/mrvl_uart.sh @@ -46,13 +46,13 @@ then echo -e "\nMarvell recovery image downloader for Armada SoC family." echo -e "Command syntax:" echo -e "\t$(basename $0) <port> <file> [2|4|8]" - echo -e "\tport - serial port the target board connected to" + echo -e "\tport - serial port the target board is connected to" echo -e "\tfile - recovery boot image for target download" echo -e "\t2|4|8 - times to increase the default serial port speed by" echo -e "For example - load the image over ttyUSB0 @ 460800 baud:" echo -e "$(basename $0) /dev/ttyUSB0 /tmp/flash-image.bin 4\n" echo -e "=====WARNING=====" - echo -e "- The speed-up option is not awailable in SoC families prior to A8K+" + echo -e "- The speed-up option is not available in SoC families prior to A8K+" echo -e "- This utility is not compatible with Armada 37xx SoC family\n" fi @@ -111,9 +111,9 @@ stty -F $port raw ignbrk time 5 $fast_baudrate sx -vv $file > $port < $port #sx-at91 $port $file -# return the port to the default speed +# Return the port to the default speed stty -F $port raw ignbrk time 5 $default_baudrate # Optional - fire up Minicom -minicom -D $port +minicom -D $port -b $default_baudrate |