1 /* $OpenBSD: disklabel.h,v 1.3 2015/09/30 15:35:30 krw Exp $ */ 2 /* public domain */ 3 4 /* 5 * Standard MBR partition scheme, with the label in the second sector 6 * of the OpenBSD partition. 7 */ 8 9 #ifndef _MACHINE_DISKLABEL_H_ 10 #define _MACHINE_DISKLABEL_H_ 11 12 #define LABELSECTOR 1 /* sector containing label */ 13 #define LABELOFFSET 0 /* offset of label in sector */ 14 #define MAXPARTITIONS 16 /* number of partitions */ 15 16 #endif /* _MACHINE_DISKLABEL_H_ */ 17