LFCR instead of CRLF on serial console

Andreas Schwab (schwab@suse.de)
29 Nov 2001 22:57:06 +0100


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/