lkml.org 
[lkml]   [2001]   [Nov]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
SubjectLFCR instead of CRLF on serial console
From
Date
The serial console code is printing LFCR at the end of the line instead of
CRLF. While this makes no difference on a terminal(-emulator), most
editors and file viewers (including less) only recognize CRLF as DOS-style
end-of-line markers.

--- linux/drivers/char/serial.c 2001/11/16 14:23:08 1.1
+++ linux/drivers/char/serial.c 2001/11/16 14:23:35
@@ -5812,11 +5812,11 @@
* Send the character out.
* If a LF, also do CR...
*/
- serial_out(info, UART_TX, *s);
if (*s == 10) {
- wait_for_xmitr(info);
serial_out(info, UART_TX, 13);
+ wait_for_xmitr(info);
}
+ serial_out(info, UART_TX, *s);
}

/*
Andreas.

--
Andreas Schwab "And now for something
Andreas.Schwab@suse.de completely different."
SuSE Labs, SuSE GmbH, Schanzäckerstr. 10, D-90443 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:13    [W:0.609 / U:0.056 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site