diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
commit | 136be46680c6e4a18cc827da991d4f9a0de29cba (patch) | |
tree | b5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/fdisk | |
parent | 9618da3e35435c433d8086d65af15f716ffe32ec (diff) | |
download | FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.zip FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.tar.gz |
s/filesystem/file system/g as discussed on -developers
Diffstat (limited to 'sbin/fdisk')
-rw-r--r-- | sbin/fdisk/fdisk.8 | 2 | ||||
-rw-r--r-- | sbin/fdisk/fdisk.c | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sbin/fdisk/fdisk.8 b/sbin/fdisk/fdisk.8 index 27da79b..f773d5c 100644 --- a/sbin/fdisk/fdisk.8 +++ b/sbin/fdisk/fdisk.8 @@ -343,7 +343,7 @@ Note that bootable .Fx slices (the .Dq Pa / -filesystem) must lie completely within the +file system) must lie completely within the first 1024 cylinders; if this is not true, booting may fail. Non-bootable slices do not have this restriction. .Pp diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c index 2952903..6cf814c 100644 --- a/sbin/fdisk/fdisk.c +++ b/sbin/fdisk/fdisk.c @@ -131,13 +131,13 @@ static struct part_type } part_types[] = { {0x00, "unused"} ,{0x01, "Primary DOS with 12 bit FAT"} - ,{0x02, "XENIX / filesystem"} - ,{0x03, "XENIX /usr filesystem"} + ,{0x02, "XENIX / file system"} + ,{0x03, "XENIX /usr file system"} ,{0x04, "Primary DOS with 16 bit FAT (< 32MB)"} ,{0x05, "Extended DOS"} ,{0x06, "Primary 'big' DOS (>= 32MB)"} ,{0x07, "OS/2 HPFS, NTFS, QNX-2 (16 bit) or Advanced UNIX"} - ,{0x08, "AIX filesystem or SplitDrive"} + ,{0x08, "AIX file system or SplitDrive"} ,{0x09, "AIX boot partition or Coherent"} ,{0x0A, "OS/2 Boot Manager, OPUS or Coherent swap"} ,{0x0B, "DOS or Windows 95 with 32 bit FAT"} @@ -186,7 +186,7 @@ static struct part_type ,{0x85, "Linux extended"} ,{0x86, "NTFS volume set??"} ,{0x87, "NTFS volume set??"} - ,{0x93, "Amoeba filesystem"} + ,{0x93, "Amoeba file system"} ,{0x94, "Amoeba bad block table"} ,{0x9F, "BSD/OS"} ,{0xA0, "Suspend to Disk"} @@ -195,7 +195,7 @@ static struct part_type ,{0xA7, "NeXTSTEP"} ,{0xA9, "NetBSD"} ,{0xAC, "IBM JFS"} - ,{0xB7, "BSDI BSD/386 filesystem"} + ,{0xB7, "BSDI BSD/386 file system"} ,{0xB8, "BSDI BSD/386 swap"} ,{0xC1, "DRDOS/sec with 12-bit FAT"} ,{0xC4, "DRDOS/sec with 16-bit FAT (< 32MB)"} @@ -205,7 +205,7 @@ static struct part_type ,{0xE1, "DOS access or SpeedStor with 12-bit FAT extended partition"} ,{0xE3, "DOS R/O or SpeedStor"} ,{0xE4, "SpeedStor with 16-bit FAT extended partition < 1024 cyl."} - ,{0xEB, "BeOS filesystem"} + ,{0xEB, "BeOS file system"} ,{0xEE, "EFI GPT"} ,{0xEF, "EFI System Partition"} ,{0xF1, "SpeedStor"} |