Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Sep 2024 19:44:39 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4fa4693dcdd8 - main - btx: Align the PXE prompt with other options
Message-ID:  <202409301944.48UJidGL055220@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=4fa4693dcdd8176f1d12cce5f026eb2052036dfc

commit 4fa4693dcdd8176f1d12cce5f026eb2052036dfc
Author:     Tatsuki Makino <tatsuki_makino@hotmail.com>
AuthorDate: 2024-09-30 19:41:42 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2024-09-30 19:41:42 +0000

    btx: Align the PXE prompt with other options
    
    To fit within in the same space, drop the newline before the PXE
    prompt to make room for the additional space character.
    
    PR:             281494
---
 stand/i386/boot0/boot0.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stand/i386/boot0/boot0.S b/stand/i386/boot0/boot0.S
index 80c7702840c1..6c48e380a32b 100644
--- a/stand/i386/boot0/boot0.S
+++ b/stand/i386/boot0/boot0.S
@@ -581,7 +581,7 @@ intx13:						# Prepare CHS parameters
  */
 prompt:
 #ifdef PXE
-		.ascii "\nF6 PXE\r"
+		.ascii "F6  PXE\r"
 #endif
 		.ascii "\nBoot:"
 item:		.ascii " ";	     .byte ' '|0x80



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409301944.48UJidGL055220>