[U-Boot] [PATCH 1/4] Blackfin: jtagconsole: disable output processing
Mike Frysinger
vapier at gentoo.org
Sat Jul 24 09:55:27 CEST 2010
Avoid extra carriage returns in the output by disabling output processing.
Otherwise, whenever the remote sends a \r\n, we end up with \r\r\n.
Reported-by: Vivi Li <vivi.li at analog.com>
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
tools/jtagconsole | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/jtagconsole b/tools/jtagconsole
index 24198c8..d404fac 100755
--- a/tools/jtagconsole
+++ b/tools/jtagconsole
@@ -31,9 +31,9 @@ if [ -z "${ip}" ] || [ -n "$3" ] ; then
usage "Invalid number of arguments"
fi
-trap "stty icanon echo intr ^C" 0 2 3 5 10 13 15
+trap "stty icanon echo opost intr ^C" 0 2 3 5 10 13 15
echo "NOTE: the interrupt signal (normally ^C) has been remapped to ^T"
-stty -icanon -echo intr ^T
+stty -icanon -echo -opost intr ^T
nc ${ip} ${port}
exit 0
--
1.7.2
More information about the U-Boot
mailing list