From 57e2f8c439e58e5589bc9b51898594cd159546a2 Mon Sep 17 00:00:00 2001 From: Yoshihiro Takahashi Date: Sun, 8 May 2005 11:30:26 +0000 Subject: [PATCH] Change DOSPTYP_386BSD to 0xc494. --- sys/sys/diskpc98.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/diskpc98.h b/sys/sys/diskpc98.h index 17a3e5d4771..3b2dc94802a 100644 --- a/sys/sys/diskpc98.h +++ b/sys/sys/diskpc98.h @@ -42,13 +42,13 @@ #define DOSMAGICOFFSET 510 #define DOSMAGIC 0xAA55 -#define DOSPTYP_386BSD 0x94 /* 386BSD partition type */ +#define DOSMID_386BSD (0x14|0x80) /* 386BSD | bootable */ +#define DOSSID_386BSD (0x44|0x80) /* 386BSD | active */ +#define DOSPTYP_386BSD (DOSSID_386BSD << 8 | DOSMID_386BSD) struct pc98_partition { unsigned char dp_mid; -#define DOSMID_386BSD (0x14|0x80) /* 386bsd|bootable */ unsigned char dp_sid; -#define DOSSID_386BSD (0x44|0x80) /* 386bsd|active */ unsigned char dp_dum1; unsigned char dp_dum2; unsigned char dp_ipl_sct; -- 2.45.2