From: Mike Frysinger Date: Fri, 23 Jul 2010 15:27:51 +0000 (-0400) Subject: Blackfin: jtagconsole: disable output processing X-Git-Tag: v2010.09-rc1~67 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f5ff2030bfd7b1bc1ab859f90d285a861dca715f;p=u-boot 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 Signed-off-by: Mike Frysinger --- 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