diff options
author | jkh <jkh@FreeBSD.org> | 1998-03-22 07:41:23 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-03-22 07:41:23 +0000 |
commit | f572092cb8c3cf688f9c0c0262e7d04141de7e47 (patch) | |
tree | bbec658ce42b1e5c0326a2444f2633590311971d /lib | |
parent | 108c1ee1936470b173b9dd06d836ef7d304f27aa (diff) | |
download | FreeBSD-src-f572092cb8c3cf688f9c0c0262e7d04141de7e47.zip FreeBSD-src-f572092cb8c3cf688f9c0c0262e7d04141de7e47.tar.gz |
Add Compaq & SCO partition types.
PR: 6092
Submitted by: Drew Derbyshire <ahd@kew.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libdisk/disk.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c index a98be1a..c9da055 100644 --- a/lib/libdisk/disk.c +++ b/lib/libdisk/disk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: disk.c,v 1.31 1998/03/14 21:14:31 ache Exp $ + * $Id: disk.c,v 1.32 1998/03/20 23:43:04 jkh Exp $ * */ @@ -372,9 +372,11 @@ slice_type_name( int type, int subtype ) case 12: return "fat (32-bit,LBA)"; case 14: return "fat (16-bit,>32Mb,LBA)"; case 15: return "extended DOS, LBA"; + case 18: return "Compaq Diagnostic"; case 84: return "OnTrack diskmgr"; case 100: return "Netware 2.x"; case 101: return "Netware 3.x"; + case 115: return "SCO UnixWare"; case 128: return "Minix 1.1"; case 129: return "Minix 1.5"; case 130: return "linux_swap"; |