disklabel.h revision 1.1
11.1Ssoren/*	$NetBSD: disklabel.h,v 1.1 2000/03/19 23:07:46 soren Exp $	*/
21.1Ssoren
31.1Ssoren#define MAXPARTITIONS	16
41.1Ssoren#define RAW_PART	3
51.1Ssoren
61.1Ssoren/* Pull in MBR partition definitions. */
71.1Ssoren#include <sys/disklabel_mbr.h>
81.1Ssoren
91.1Ssoren#if 0
101.1Ssorenstruct cpu_disklabel {
111.1Ssoren        struct mbr_partition dosparts[NMBRPART];
121.1Ssoren};
131.1Ssoren#endif
141.1Ssoren
151.1Ssoren/* XXX */
161.1Ssoren
171.1Ssoren#ifndef __ASSEMBLER__
181.1Ssoren#include <sys/dkbad.h>
191.1Ssorenstruct cpu_disklabel {
201.1Ssoren        struct mbr_partition mbrparts[NMBRPART];
211.1Ssoren        struct dkbad bad;
221.1Ssoren};
231.1Ssoren#endif
24