aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/boot0cfg
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@FreeBSD.org>2020-06-21 13:34:08 +0000
committerHans Petter Selasky <hselasky@FreeBSD.org>2020-06-21 13:34:08 +0000
commit7747001b125d7bdc64fa4b06fa4d6b940e38453f (patch)
treee45201c99f3edd18978730294d9686c6a310900c /usr.sbin/boot0cfg
parent2d3725d62acbaca2fe84d43e8fd32ae9fb9a915b (diff)
downloadsrc-7747001b125d7bdc64fa4b06fa4d6b940e38453f.tar.gz
src-7747001b125d7bdc64fa4b06fa4d6b940e38453f.zip
Improve wording to be more precise and clear.
No functional change intended. s/Master Boot/Main Boot/ (also called MBR) MFC after: 1 week Sponsored by: Mellanox Technologies
Notes
Notes: svn path=/head/; revision=362466
Diffstat (limited to 'usr.sbin/boot0cfg')
-rw-r--r--usr.sbin/boot0cfg/boot0cfg.82
-rw-r--r--usr.sbin/boot0cfg/boot0cfg.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/boot0cfg/boot0cfg.8 b/usr.sbin/boot0cfg/boot0cfg.8
index bf0d35d489a6..009cdb53d804 100644
--- a/usr.sbin/boot0cfg/boot0cfg.8
+++ b/usr.sbin/boot0cfg/boot0cfg.8
@@ -68,7 +68,7 @@ boot manager on the specified
and allows various operational parameters to be configured.
.Pp
On PCs, a boot manager typically occupies sector 0 of a disk, which is
-known as the Master Boot Record (MBR).
+known as the Main Boot Record (MBR).
The MBR contains both code (to which control is passed by the PC BIOS)
and data (an embedded table of defined slices).
.Pp
diff --git a/usr.sbin/boot0cfg/boot0cfg.c b/usr.sbin/boot0cfg/boot0cfg.c
index 16bc46b5ec12..a7a47f4590d8 100644
--- a/usr.sbin/boot0cfg/boot0cfg.c
+++ b/usr.sbin/boot0cfg/boot0cfg.c
@@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$");
#include <string.h>
#include <unistd.h>
-#define MBRSIZE 512 /* master boot record size */
+#define MBRSIZE 512 /* main boot record size */
#define OFF_VERSION 0x1b0 /* offset: version number, only boot0version */
#define OFF_SERIAL 0x1b8 /* offset: volume serial number */