summaryrefslogtreecommitdiffstats
path: root/sys/alpha
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2005-01-05 20:50:31 +0000
committerimp <imp@FreeBSD.org>2005-01-05 20:50:31 +0000
commit90af8e5e9ad80d28a3fa66629927c8b4848f0bd5 (patch)
treeed266ea39d0a425c490a725aef9c92fea0b5736a /sys/alpha
parent5a2f6eb450219f15f1a3654cbf32bff360b7e141 (diff)
downloadFreeBSD-src-90af8e5e9ad80d28a3fa66629927c8b4848f0bd5.zip
FreeBSD-src-90af8e5e9ad80d28a3fa66629927c8b4848f0bd5.tar.gz
These appear to be unused in our tree, so remove them.
Diffstat (limited to 'sys/alpha')
-rw-r--r--sys/alpha/include/pc/msdos.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/sys/alpha/include/pc/msdos.h b/sys/alpha/include/pc/msdos.h
deleted file mode 100644
index 5bdcf1c..0000000
--- a/sys/alpha/include/pc/msdos.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*-
- * msdos common header file
- * [obtained from mtools -wfj]
- * how to decipher DOS disk structures in coexisting with DOS
- *
- * $FreeBSD$
- * from: i386/include/pc msdos.h,v 1.4
- */
-
-#define MSECTOR_SIZE 512 /* MSDOS sector size in bytes */
-#define MDIR_SIZE 32 /* MSDOS directory size in bytes */
-#define MAX_CLUSTER 8192 /* largest cluster size */
-#define MAX_PATH 128 /* largest MSDOS path length */
-#define MAX_DIR_SECS 64 /* largest directory (in sectors) */
-
-#define NEW 1
-#define OLD 0
-
-struct directory {
- unsigned char name[8]; /* file name */
- unsigned char ext[3]; /* file extension */
- unsigned char attr; /* attribute byte */
- unsigned char reserved[10]; /* ?? */
- unsigned char time[2]; /* time stamp */
- unsigned char date[2]; /* date stamp */
- unsigned char start[2]; /* starting cluster number */
- unsigned char size[4]; /* size of the file */
-};
-
-struct bootsector {
- unsigned char jump[3]; /* Jump to boot code */
- unsigned char banner[8]; /* OEM name & version */
- unsigned char secsiz[2]; /* Bytes per sector hopefully 512 */
- unsigned char clsiz; /* Cluster size in sectors */
- unsigned char nrsvsect[2]; /* Number of reserved (boot) sectors */
- unsigned char nfat; /* Number of FAT tables hopefully 2 */
- unsigned char dirents[2]; /* Number of directory slots */
- unsigned char psect[2]; /* Total sectors on disk */
- unsigned char descr; /* Media descriptor=first byte of FAT */
- unsigned char fatlen[2]; /* Sectors in FAT */
- unsigned char nsect[2]; /* Sectors/track */
- unsigned char nheads[2]; /* Heads */
- unsigned char nhs[4]; /* number of hidden sectors */
- 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];
OpenPOWER on IntegriCloud