mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Support for the Panasonic / Matshita USB FDD.
Submitted by: SAKIYAMA Nobuo <sakichan@lares.dti.ne.jp> PR: kern/20300
This commit is contained in:
parent
0bdb599b91
commit
7cce89994a
3 changed files with 12 additions and 2 deletions
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue