diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-24 12:07:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-24 12:07:09 +0000 |
commit | 9dd3b17097bf72c189c9823b5af0064c493a72ad (patch) | |
tree | e1a1ffa33c7080a7745ec39b3d603ee94f4e0e57 | |
parent | 3e6f196fd04a87ec158c09faee1507afd890ad49 (diff) |
add DOSPTYP_OPENBSD, like i386 port
-rw-r--r-- | sys/arch/arc/include/disklabel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/arc/include/disklabel.h b/sys/arch/arc/include/disklabel.h index a663d271716..0a2c0582e5f 100644 --- a/sys/arch/arc/include/disklabel.h +++ b/sys/arch/arc/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.3 1996/09/21 10:48:47 pefo Exp $ */ +/* $OpenBSD: disklabel.h,v 1.4 1996/09/24 12:07:08 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.2 1995/01/18 06:37:55 mellon Exp $ */ /* @@ -62,8 +62,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 */ #include <sys/dkbad.h> struct cpu_disklabel { |