aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2008-09-05 17:45:24 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2008-09-05 17:45:24 +0000
commitf877ae62e8f892c743cec46ab06e4af8caaa9c1d (patch)
tree23339fcba11b528aaa3be91ab59a0e614006d005
parent0efdfdee5f888ed1f75e18910912294b45b55ccd (diff)
downloadsrc-f877ae62e8f892c743cec46ab06e4af8caaa9c1d.tar.gz
src-f877ae62e8f892c743cec46ab06e4af8caaa9c1d.zip
Add a couple more Apple GPT entries and NetBSD GPT entries.
Notes
Notes: svn path=/head/; revision=182796
-rw-r--r--sys/sys/gpt.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/sys/gpt.h b/sys/sys/gpt.h
index 2afd4f2f3196..1e6c595341d6 100644
--- a/sys/sys/gpt.h
+++ b/sys/sys/gpt.h
@@ -119,5 +119,26 @@ struct gpt_ent {
#define GPT_ENT_TYPE_APPLE_HFS \
{0x48465300,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
+#define GPT_ENT_TYPE_APPLE_UFS \
+ {0x55465300,0x0000,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}}
+#define GPT_ENT_TYPE_APPLE_ZFS \
+ {0x6a898cc3,0x1dd2,0x11b2,0x99,0xa6,{0x08,0x00,0x20,0x73,0x66,0x31}}
+#define GPT_ENT_TYPE_APPLE_RAID \
+ {0x52414944,0x0000,0x11aa,0xaa,0x22,{0x00,0x30,0x65,0x43,0xec,0xac}}
+#define GPT_ENT_TYPE_APPLE_RAID_OFFLINE \
+ {0x52414944,0x5f4f,0x11aa,0xaa,0x22,{0x00,0x30,0x65,0x43,0xec,0xac}}
+
+#define GPT_ENT_TYPE_NETBSD_FFS \
+ {0x49f48d5a,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
+#define GPT_ENT_TYPE_NETBSD_LFS \
+ {0x49f48d82,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
+#define GPT_ENT_TYPE_NETBSD_SWAP \
+ {0x49f48d32,0xb10e,0x11dc,0xB9,0x9B,{0x00,0x19,0xd1,0x87,0x96,0x48}}
+#define GPT_ENT_TYPE_NETBSD_RAID \
+ {0x49f48daa,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
+#define GPT_ENT_TYPE_NETBSD_CCD \
+ {0x2db519c4,0xb10f,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
+#define GPT_ENT_TYPE_NETBSD_CGD \
+ {0x2db519ec,0xb10f,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}}
#endif /* _SYS_GPT_H_ */