Hier aber die Einstellungen in der Config.sys : [Config.sys] [COMMON] DEVICE=A:\HIMEM.SYS DOS=HIGH,UMB DEVICE=DEUTSCH.BIN LASTDRIVE=Z DEVICEHIGH=USBASPI.SYS /v /w /o DEVICEHIGH=USBASPI.SYS /v /w /u DEVICEHIGH=USBASPI.SYS /v /w /e DEVICEHIGH=DI1000DD.SYS Die Reihenfolge der USB-Treiber bewirkt, dass zuerst USB 1.0 neu, dann USB 1.0 alt und dann USB 2.0 durchprobiert wird... So ist eine größtmögliche Kompatiblität sichergestellt...
The driver switches you can use are: device=(path)\USBASPI.SYS [/e] [/o] [/u] [/w] [/v] [/l[=n]] [/f] /r] [/slow] [/nocbc] [/norst] [/noprt] The driver scans all three USB controller specs by default, but you can limit which controllers are enabled using these switches: /e EHCI spec (USB 2.0) /o OHCI spec (newer USB 1.x) /u UHCI spec (older USB 1.x) And so far I learned what these switches mean: /w Wait, displays text message for attaching or swapping USB devices /v Verbose, shows status messages - recommended /l[=n] LUN, specifies highest LUN to be attached to device ID (default=0) Example config.sys and autoexec.bat files on a DOS boot diskette with USB support for an usb cd-(rom/rw) and hard disk look like this: [config.sys] DOS=HIGH,UMB lastdrive=Z device=HIMEM.SYS rem The following line loads Panasonic's universal USB- controller driver devicehigh=USBASPI.SYS /v /w /e rem the following is an aspi mass storage driver for usb- connected HDs and compactflash memory cards devicehigh=DI1000DD.SYS rem The following one loads CD-ROM driver devicehigh=USBCD.SYS /d:USBCD001 [autoexec.bat] @echo off REM the following line adds a drive letter to the usb cd(rom/r/rw) mounted LH MSCDEX /d:USBCD001 The Panasonic driver also seems to recognise some TI cardbus controllers, making it possible to use USB peripherals attached to USB (even 2.0!) Cardbus cards.