diff options
| author | christos <christos@NetBSD.org> | 2013-03-02 22:04:06 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2013-03-02 22:04:06 +0000 |
| commit | e0f58635da4f04971dbc4e623d2f136d885e6499 (patch) | |
| tree | fcccb6c0096124f81cca7959c1f8f182799701ca | |
| parent | 1c7c7598a474d7549cdd36333dccd6c50f20ad41 (diff) | |
recognize OpenBSD too
| -rw-r--r-- | sys/lib/libkern/xlat_mbr_fstype.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/lib/libkern/xlat_mbr_fstype.c b/sys/lib/libkern/xlat_mbr_fstype.c index 847ec867cb6..8e3f07871ae 100644 --- a/sys/lib/libkern/xlat_mbr_fstype.c +++ b/sys/lib/libkern/xlat_mbr_fstype.c @@ -1,4 +1,4 @@ -/* $NetBSD: xlat_mbr_fstype.c,v 1.8 2012/01/16 18:47:57 christos Exp $ */ +/* $NetBSD: xlat_mbr_fstype.c,v 1.9 2013/03/02 22:04:06 christos Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0,"$NetBSD: xlat_mbr_fstype.c,v 1.8 2012/01/16 18:47:57 christos Exp $"); +__KERNEL_RCSID(0,"$NetBSD: xlat_mbr_fstype.c,v 1.9 2013/03/02 22:04:06 christos Exp $"); #include <sys/disklabel.h> @@ -56,6 +56,7 @@ xlat_mbr_fstype(int mbr_type) { MBR_PTYPE_NETBSD, FS_BSDFFS }, { MBR_PTYPE_NTFS, FS_NTFS }, { MBR_PTYPE_MINIX_14B, FS_MINIXFS3 }, + { MBR_PTYPE_OPENBSD, FS_BSDFFS }, { 0, FS_OTHER } }; const struct ptn_types *pt; |
