summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/include/disklabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/macppc/include/disklabel.h')
-rw-r--r--sys/arch/macppc/include/disklabel.h47
1 files changed, 1 insertions, 46 deletions
diff --git a/sys/arch/macppc/include/disklabel.h b/sys/arch/macppc/include/disklabel.h
index 8f0dc9fd57b..d9d76603828 100644
--- a/sys/arch/macppc/include/disklabel.h
+++ b/sys/arch/macppc/include/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.11 2006/10/20 23:47:43 krw Exp $ */
+/* $OpenBSD: disklabel.h,v 1.12 2007/06/17 00:27:27 deraadt Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@@ -36,51 +36,6 @@
#define LABELSECTOR 1 /* sector containing label */
#define LABELOFFSET 0 /* offset of label in sector */
#define MAXPARTITIONS 16 /* number of partitions */
-#define RAW_PART 2 /* raw partition: ie. rsd0c */
-
-/* MBR partition table */
-#define DOSBBSECTOR 0 /* MBR sector number */
-#define DOSPARTOFF 446 /* Offset of MBR partition table */
-#define NDOSPART 4 /* # of partitions in MBR */
-#define DOSMAGICOFF 510 /* Offset of magic number */
-#define DOSMAGIC 0xaa55 /* Actual magic number */
-#define MBRMAGIC DOSMAGIC
-#define DOSMBR_SIGNATURE MBRMAGIC
-#define DOSMBR_SIGNATURE_OFF DOSMAGICOFF
-#define DOSACTIVE 0x80
-
-struct dos_partition {
- u_int8_t dp_flag; /* default boot flag */
- u_int8_t dp_shd; /* start head, IsN't Always Meaningful */
- u_int8_t dp_ssect; /* start sector, INAM */
- u_int8_t dp_scyl; /* start cylinder, INAM */
- u_int8_t dp_typ; /* partition type */
- u_int8_t dp_ehd; /* end head, INAM */
- u_int8_t dp_esect; /* end sector, INAM */
- u_int8_t dp_ecyl; /* end cylinder, INAM */
- u_int32_t dp_start; /* absolute start sector number */
- u_int32_t dp_size; /* partition size in sectors */
-};
-
-/* Known DOS partition types. */
-#define DOSPTYP_UNUSED 0x00 /* Unused partition */
-#define DOSPTYP_FAT12 0x01 /* 12-bit FAT */
-#define DOSPTYP_FAT16S 0x04 /* 16-bit FAT, less than 32M */
-#define DOSPTYP_EXTEND 0x05 /* Extended; contains sub-partitions */
-#define DOSPTYP_FAT16B 0x06 /* 16-bit FAT, more than 32M */
-#define DOSPTYP_FAT32 0x0b /* 32-bit FAT */
-#define DOSPTYP_FAT32L 0x0c /* 32-bit FAT, LBA-mapped */
-#define DOSPTYP_FAT16L 0x0e /* 16-bit FAT, LBA-mapped */
-#define DOSPTYP_EXTENDL 0x0f /* Extended, LBA-mapped; contains sub-partitions */
-#define DOSPTYP_ONTRACK 0x54
-#define DOSPTYP_LINUX 0x83 /* That other thing */
-#define DOSPTYP_FREEBSD 0xa5 /* FreeBSD partition type */
-#define DOSPTYP_OPENBSD 0xa6 /* OpenBSD partition type */
-#define DOSPTYP_NETBSD 0xa9 /* NetBSD partition type */
-
-/* Isolate the relevant bits to get sector and cylinder. */
-#define DPSECT(s) ((s) & 0x3f)
-#define DPCYL(c, s) ((c) + (((s) & 0xc0) << 2))
/* HFS/DPME */