aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/diskpc98.h
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2016-10-16 02:43:51 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2016-10-16 02:43:51 +0000
commit50875ed2c1b04e9a7316a6677c368f615169ef86 (patch)
tree8a5814ed19072525825784c60ada702c8a271c11 /sys/sys/diskpc98.h
parent9ffbf09f2f8f86e6f52aea78dec1a009a14657b3 (diff)
downloadsrc-50875ed2c1b04e9a7316a6677c368f615169ef86.tar.gz
src-50875ed2c1b04e9a7316a6677c368f615169ef86.zip
Re-apply change 306811 or alternatively, revert change 307385.
Notes
Notes: svn path=/head/; revision=307386
Diffstat (limited to 'sys/sys/diskpc98.h')
-rw-r--r--sys/sys/diskpc98.h41
1 files changed, 3 insertions, 38 deletions
diff --git a/sys/sys/diskpc98.h b/sys/sys/diskpc98.h
index aa0bb0a8f212..5b75df7016b7 100644
--- a/sys/sys/diskpc98.h
+++ b/sys/sys/diskpc98.h
@@ -33,46 +33,11 @@
#ifndef _SYS_DISKPC98_H_
#define _SYS_DISKPC98_H_
+#include <sys/disk/pc98.h>
#include <sys/ioccom.h>
-#define PC98_BBSECTOR 1 /* DOS boot block relative sector number */
-#define PC98_PARTOFF 0
-#define PC98_PARTSIZE 32
-#define PC98_NPARTS 16
-#define PC98_MAGICOFS 510
-#define PC98_MAGIC 0xAA55
-
-#define PC98_MID_BOOTABLE 0x80
-#define PC98_MID_MASK 0x7f
-#define PC98_MID_386BSD 0x14
-
-#define PC98_SID_ACTIVE 0x80
-#define PC98_SID_MASK 0x7f
-#define PC98_SID_386BSD 0x44
-
-#define DOSMID_386BSD (PC98_MID_386BSD | PC98_MID_BOOTABLE)
-#define DOSSID_386BSD (PC98_SID_386BSD | PC98_SID_ACTIVE)
-#define PC98_PTYP_386BSD (DOSSID_386BSD << 8 | DOSMID_386BSD)
-
-struct pc98_partition {
- unsigned char dp_mid;
- unsigned char dp_sid;
- unsigned char dp_dum1;
- unsigned char dp_dum2;
- unsigned char dp_ipl_sct;
- unsigned char dp_ipl_head;
- unsigned short dp_ipl_cyl;
- unsigned char dp_ssect; /* starting sector */
- unsigned char dp_shd; /* starting head */
- unsigned short dp_scyl; /* starting cylinder */
- unsigned char dp_esect; /* end sector */
- unsigned char dp_ehd; /* end head */
- unsigned short dp_ecyl; /* end cylinder */
- unsigned char dp_name[16];
-};
-#ifdef CTASSERT
-CTASSERT(sizeof (struct pc98_partition) == PC98_PARTSIZE);
-#endif
+#define DOSMID_386BSD __DOSMID_386BSD
+#define DOSSID_386BSD __DOSSID_386BSD
void pc98_partition_dec(void const *pp, struct pc98_partition *d);
void pc98_partition_enc(void *pp, struct pc98_partition *d);