diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2002-10-02 03:29:00 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2002-10-02 03:29:00 +0000 |
| commit | e0c386dd904494cfdecee631f2ffdf65a7a488f2 (patch) | |
| tree | 9f437fd24eccba4c94e7bb7a3da9e377914fdbc7 | |
| parent | 8025c44b00f74e8dd65b526b5a7fa7cbf805b2a5 (diff) | |
Notes
| -rw-r--r-- | sys/i386/include/pc/msdos.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sys/i386/include/pc/msdos.h b/sys/i386/include/pc/msdos.h index b56bddc967dd..08c41b07e4b3 100644 --- a/sys/i386/include/pc/msdos.h +++ b/sys/i386/include/pc/msdos.h @@ -43,23 +43,3 @@ struct bootsector { unsigned char bigsect[4]; /* big total sectors */ unsigned char junk[476]; /* who cares? */ }; - -/* DOS partition table -- located in boot block */ - -#define DOSBBSECTOR 0 /* DOS boot block relative sector number */ -#define DOSPARTOFF 446 -#define NDOSPART 4 - -struct dos_partition { - unsigned char dp_flag; /* bootstrap flags */ - unsigned char dp_shd; /* starting head */ - unsigned char dp_ssect; /* starting sector */ - unsigned char dp_scyl; /* starting cylinder */ - unsigned char dp_typ; /* partition type */ -#define DOSPTYP_386BSD 0xa5 /* 386BSD partition type */ - unsigned char dp_ehd; /* end head */ - unsigned char dp_esect; /* end sector */ - unsigned char dp_ecyl; /* end cylinder */ - unsigned long dp_start; /* absolute starting sector number */ - unsigned long dp_size; /* partition size in sectors */ -} dos_partitions[NDOSPART]; |
