diff options
author | ache <ache@FreeBSD.org> | 1998-03-14 21:22:09 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-03-14 21:22:09 +0000 |
commit | fb0b69a9d2b895e3a9e377684059188e3bf22a75 (patch) | |
tree | c21fc3aeac4fccf7aeefdf5d569f99ff8cca54ed /sbin/i386/fdisk | |
parent | 1807e1651da47c9817e259fc9a574b66956d1fe2 (diff) | |
download | FreeBSD-src-fb0b69a9d2b895e3a9e377684059188e3bf22a75.zip FreeBSD-src-fb0b69a9d2b895e3a9e377684059188e3bf22a75.tar.gz |
Add more DOS/Win95 partition types
Diffstat (limited to 'sbin/i386/fdisk')
-rw-r--r-- | sbin/i386/fdisk/fdisk.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/i386/fdisk/fdisk.c b/sbin/i386/fdisk/fdisk.c index 7088218..eaaa385 100644 --- a/sbin/i386/fdisk/fdisk.c +++ b/sbin/i386/fdisk/fdisk.c @@ -164,14 +164,17 @@ struct part_type ,{0x01, "Primary DOS with 12 bit FAT"} ,{0x02, "XENIX / filesystem"} ,{0x03, "XENIX /usr filesystem"} - ,{0x04, "Primary DOS with 16 bit FAT"} + ,{0x04, "Primary DOS with 16 bit FAT (<= 32MB)"} ,{0x05, "Extended DOS"} ,{0x06, "Primary 'big' DOS (> 32MB)"} ,{0x07, "OS/2 HPFS, QNX or Advanced UNIX"} ,{0x08, "AIX filesystem"} ,{0x09, "AIX boot partition or Coherent"} ,{0x0A, "OS/2 Boot Manager or OPUS"} - ,{0x0B, "Primary DOS or Windows 95 with 32 bit FAT"} + ,{0x0B, "DOS or Windows 95 with 32 bit FAT"} + ,{0x0C, "DOS or Windows 95 with 32 bit FAT, LBA"} + ,{0x0E, "Primary 'big' DOS (> 32MB, LBA)"} + ,{0x0F, "Extended DOS, LBA"} ,{0x10, "OPUS"} ,{0x40, "VENIX 286"} ,{0x50, "DM"} |