From 3e00c48ef05bfe1a16f57dd0610ed2fa78774d63 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20F=C3=A4rber?= Date: Sat, 20 Jan 2018 13:07:09 +0100 Subject: [PATCH] tools/mrvl_uart.sh: Fix minicom baudrate MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit minicom doesn't inherit the baudrate from stty but uses its own defaults, such as for example 57600, whereas we expect 115200 here. Explicitly tell minicom which baudrate to use. Fixes: eee4835d22 ("tools: Add Marvell recovery image download script") Cc: Konstantin Porotchkin Cc: Stefan Roese Cc: Igal Liberman Signed-off-by: Andreas Färber Reviewed-by: Konstantin Porotchkin Reviewed-by: Stefan Roese Signed-off-by: Stefan Roese --- tools/mrvl_uart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mrvl_uart.sh b/tools/mrvl_uart.sh index 6b04d7ae2c..500fa117eb 100755 --- a/tools/mrvl_uart.sh +++ b/tools/mrvl_uart.sh @@ -115,5 +115,5 @@ sx -vv $file > $port < $port stty -F $port raw ignbrk time 5 $default_baudrate # Optional - fire up Minicom -minicom -D $port +minicom -D $port -b $default_baudrate -- 2.39.5