summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-24 11:34:30 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-24 11:34:30 +0000
commit5a452a4c056f898105b8a215cae439f49ee5f623 (patch)
tree615e7df31b60bacf98472b45f94f612735fd12d9
parentba8a9a9f4080f26edaab63d678c2ddef801182de (diff)
DOSPTYP_OPENBSD = 0xa6 (everything i checked says this is available)
-rw-r--r--sys/arch/i386/include/disklabel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/include/disklabel.h b/sys/arch/i386/include/disklabel.h
index 70e193a08ce..320dae9664d 100644
--- a/sys/arch/i386/include/disklabel.h
+++ b/sys/arch/i386/include/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.5 1996/09/24 04:27:24 deraadt Exp $ */
+/* $OpenBSD: disklabel.h,v 1.6 1996/09/24 11:34:29 deraadt Exp $ */
/* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */
/*
@@ -58,8 +58,9 @@ struct dos_partition {
} dos_partitions[NDOSPART];
/* Known DOS partition types. */
-#define DOSPTYP_386BSD 0xa5 /* 386BSD partition type */
+#define DOSPTYP_386BSD 0xa5 /* 386BSD partition type */
#define DOSPTYP_NETBSD DOSPTYP_386BSD /* NetBSD partition type (XXX) */
+#define DOSPTYP_OPENBSD 0xa6 /* OpenBSD partition type */
#define DOSPTYP_FAT12 0x1 /* 12-bit FAT */
#define DOSPTYP_FAT16S 0x4 /* 16-bit FAT, less than 32M */
#define DOSPTYP_FAT16B 0x6 /* 16-bit FAT, more than 32M */