Support for the Panasonic / Matshita USB FDD.

Submitted by:		SAKIYAMA Nobuo <sakichan@lares.dti.ne.jp>
PR:			kern/20300
This commit is contained in:
Nick Hibma 2000-07-31 12:40:26 +00:00
parent 0bdb599b91
commit 7cce89994a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64058
3 changed files with 12 additions and 2 deletions

View File

@ -736,6 +736,8 @@ MacAlly mouse (3 buttons).
MacAlly self powered hub (4 ports).
MacAlly iKey keyboard.
Matshita CF-VFDU03 floppy drive.
Microsoft IntelliMouse (3 buttons).
Microsoft keyboard.
@ -743,6 +745,8 @@ Microtech USB-SCSI-HD 50 USB to SCSI cable.
NEC hub.
Panasonic floppy drive.
Trust Ami Mouse (3 buttons).
Y-E Data floppy drive (720/1.44/2.88Mb).

View File

@ -48,9 +48,9 @@ Supported are
.Bl -tag -compact -width xxxxxx
.It Iomega USB Zip 100 drive
.It Iomega USB Zip 250 drive
.It Y-E Data Flashbuster-U
.It VAIO floppy drive
.It Microtech International, Inc. USB-SCSI-HD 50 USB to SCSI cable.
.It Panasonic ("Matshita FDD CF-VFDU03")
.It VAIO floppy drive (includes Y-E Data Flashbuster-U)
.El
.Pp
.Nm usb

View File

@ -198,7 +198,13 @@ static struct da_quirk_entry da_quirk_table[] =
*/
{T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"},
/*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE
},
{
/* Another USB floppy */
{T_DIRECT, SIP_MEDIA_REMOVABLE, "MATSHITA", "FDD CF-VFDU*","*"},
/*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE
}
};
static d_open_t daopen;