summaryrefslogtreecommitdiff
path: root/sys/msdosfs/bootsect.h
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2006-12-15 03:04:25 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2006-12-15 03:04:25 +0000
commitf91f289a9a5472f63706904a6bf5ecec00b89cc4 (patch)
treeb62de464f27b805f7095b0f402efd43addec567a /sys/msdosfs/bootsect.h
parentaca2338790665caf3f78618178ddb3f6e82371de (diff)
Nuke GEMDOSFS. Unused part of unused atari port. Simplifies
MSDOSFS code. Eliminates -G option to mount_msdos. Nit detection by gwk@, tom@, jmc@. ok weingart@ tom@ thib@ dlg@ deraadt@
Diffstat (limited to 'sys/msdosfs/bootsect.h')
-rw-r--r--sys/msdosfs/bootsect.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/sys/msdosfs/bootsect.h b/sys/msdosfs/bootsect.h
index 806062ee95e..56cde30376d 100644
--- a/sys/msdosfs/bootsect.h
+++ b/sys/msdosfs/bootsect.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bootsect.h,v 1.4 2000/11/10 15:33:10 provos Exp $ */
+/* $OpenBSD: bootsect.h,v 1.5 2006/12/15 03:04:24 krw Exp $ */
/* $NetBSD: bootsect.h,v 1.8 1997/10/17 11:23:29 ws Exp $ */
/*
@@ -71,22 +71,6 @@ struct bootsector710 {
#define BOOTSIG2 0
#define BOOTSIG3 0
};
-#ifdef atari
-/*
- * The boot sector on a gemdos fs is a little bit different from the msdos fs
- * format. Currently there is no need to declare a separate structure, the
- * bootsector33 struct will do.
- */
-#if 0
-struct bootsec_atari {
- u_int8_t bsBranch[2]; /* branch inst if auto-boot */
- int8_t bsFiller[6]; /* anything or nothing */
- int8_t bsSerial[3]; /* serial no. for mediachange */
- int8_t bsBPB[19]; /* BIOS parameter block */
- int8_t bsBootCode[482]; /* pad so struct is 512b */
-};
-#endif
-#endif /* atari */
union bootsector {
struct bootsector33 bs33;