From a8d408bf597785a738e91893411d0604bea4d772 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 11 Jul 2007 17:23:11 -0700 Subject: [PATCH] MBR: add CR LF to the end of messages Six bytes down the drain, but people do expect it. If it becomes an issue we can remove the period; it's better than the CR LF. There might be some way to efficiently issue . \r \n in common code, too. --- mbr/mbr.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mbr/mbr.S b/mbr/mbr.S index ac24b74..8d472da 100644 --- a/mbr/mbr.S +++ b/mbr/mbr.S @@ -288,11 +288,11 @@ error: jmp . /* Die */ missing_os_msg: - .ascii "Missing operating system." + .ascii "Missing operating system.\r\n" .byte 0 disk_error_msg: - .ascii "Operating system load error." + .ascii "Operating system load error.\r\n" .byte 0 too_many_active_msg: - .ascii "Multiple active partitions." + .ascii "Multiple active partitions.\r\n" .byte 0 -- 2.7.4