]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: jtagconsole: disable output processing
authorMike Frysinger <vapier@gentoo.org>
Fri, 23 Jul 2010 15:27:51 +0000 (11:27 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sun, 25 Jul 2010 19:17:23 +0000 (15:17 -0400)
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>
tools/jtagconsole

index 24198c83cac69a9de8edd2490ea3ad93cadf6a32..d404fac5e802a2182974ff354f2dd3846797f743 100755 (executable)
@@ -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