summaryrefslogtreecommitdiff
path: root/mbr
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-07-11 17:23:11 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-07-11 17:23:11 -0700
commita8d408bf597785a738e91893411d0604bea4d772 (patch)
treea4dbe6dd9cffd45306b033da8818748b63a04f80 /mbr
parent0d628e5402dbfee63181d20b9fb66d9f7fca9b1e (diff)
downloadsyslinux-a8d408bf597785a738e91893411d0604bea4d772.tar.gz
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.
Diffstat (limited to 'mbr')
-rw-r--r--mbr/mbr.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbr/mbr.S b/mbr/mbr.S
index ac24b746..8d472da1 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