Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Mar 2024 19:59:30 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3bd637afbd68 - main - boot0: remove reference to fdisk
Message-ID:  <202403251959.42PJxUZO089840@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=3bd637afbd68baaff3ae4b3d41bdbd39b1fbb63c

commit 3bd637afbd68baaff3ae4b3d41bdbd39b1fbb63c
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-01-24 15:13:08 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-03-25 19:59:09 +0000

    boot0: remove reference to fdisk
    
    fdisk is obsolete and there is no need to mention a specific tool used
    to update the partition table.  Just refer to it as the MBR partition
    table.
    
    Sponsored by:   The FreeBSD Foundation
---
 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 123e66fca970..80c7702840c1 100644
--- a/stand/i386/boot0/boot0.S
+++ b/stand/i386/boot0/boot0.S
@@ -665,7 +665,7 @@ ticks:		.word TICKS			# Delay
 
 		.org PRT_OFF
 /*
- * Here is the 64 byte partition table that fdisk would fiddle with.
+ * Here is the 64 byte MBR partition table.
  */
 partbl:		.fill 0x40,0x1,0x0		# Partition table
 		.word MAGIC			# Magic number



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