summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-07-23 11:27:51 -0400
committerMike Frysinger <vapier@gentoo.org>2010-07-25 15:17:23 -0400
commitf5ff2030bfd7b1bc1ab859f90d285a861dca715f (patch)
tree7e9cebd2612ecf633a25fa2a03109c2bae879e2a /tools
parentbeb60e777d6b3b8e4c953931263a121595e1b7e4 (diff)
downloadtalos-obmc-uboot-f5ff2030bfd7b1bc1ab859f90d285a861dca715f.tar.gz
talos-obmc-uboot-f5ff2030bfd7b1bc1ab859f90d285a861dca715f.zip
Blackfin: jtagconsole: disable output processing
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@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/jtagconsole4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jtagconsole b/tools/jtagconsole
index 24198c83ca..d404fac5e8 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
OpenPOWER on IntegriCloud