Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-10-05 | Port of NetBSD's udav driver for Davicom USB DM960 based Ethernet. | Jonathan Gray | |
Thanks to Mark Uemura for donating several of these adapters. Tested by and ok deraadt@ | |||
2004-08-30 | Remove 'usb_'realloc() usage because it doesn't know the size of the old | Dale Rahn | |
buffer, thus may copy too much, causing a memory fault. ok millert, dlg, henning, tdeval, otto | |||
2004-05-26 | rehab the locator index crack monkeys | Theo de Raadt | |
2004-04-02 | axe usb ethernet driver hacked into the tree by taleck@oz.net | Theo de Raadt | |
2004-01-14 | Nuke SDEV_NOLUNS, SDEV_FORCELUNS, and PQUIRK_FORCELUNS quirks. Also | Kenneth R Westerback | |
moreluns field in scsi_link structure. Instead, treat an INQUIRY result that duplicates the INQUIRY result of LUN 0 as proof the LUN does not exist. Compensate for lack of SDEV_NOLUNS where necessary by setting sc_link->luns to 1, which has the same effect. From Marco Peereboom. Don't issue Test Unit Ready command before INQUIRY command - not necessary and potentially harmful to devices with ADEV_NOTUR quirk since quirks have not been set yet. From mycroft@NetBSD ok deraadt@, mvme* changes by miod@. | |||
2003-12-15 | Set devclass to DV_IFNET for all USB network drivers. | Cedric Berger | |
ok deraadt@ nate@ | |||
2003-09-23 | Replace select backends with poll backends. selscan() and pollscan() | Todd C. Miller | |
now call the poll backend. With this change we implement greater poll(2) functionality instead of emulating it via the select backend. Adapted from NetBSD and including some changes from FreeBSD. Tested by many, deraadt@ OK | |||
2003-09-19 | Disable USB_USE_SOFTINTR until we have generic support for soft interrupts. | Anil Madhavapeddy | |
Solves a number of hangs on ohci (and possibly uhci) machines. Found by me prodding around, and drahn@ more cluefully ok pvalchev@, nate@ | |||
2003-07-08 | Sync USB code with NetBSD. | Nathan Binkert | |
This includes numerous fixes and paves the way for usb 2.0 support. | |||
2003-06-27 | kqueue support for various usb devices including: usb, uhid, ugen, | Nathan Binkert | |
and uscanner From NetBSD | |||
2003-05-17 | sync with NetBSD and add various local hacks to make things work correctly | Nathan Binkert | |
with our scsi layer | |||
2002-07-25 | get rid of trailing whitespace | Nathan Binkert | |
2002-05-19 | Provide a correct timeout behaviour, fixes some panics people had been | Miod Vallat | |
experienting. Discussed and brought to this shape by art@, drahn@ and myself. | |||
2002-05-09 | Sync hid stuff including ukbd, ums, and uhid with NetBSD | Nathan Binkert | |
This adds a uhidev device which can be thought of as something like a uhid bus. It allows more than one ukbd, ums, or uhid to attach to the same device instance. This functionality is found on many of the newer keyboards that have extra buttons. (The extra buttons show up as uhid device(s)). Tested by me on i386, dale on macppc, and jason on sparc64 | |||
2002-05-07 | Meant to commit only ulpt and committed everything. Most things weren't ready | Nathan Binkert | |
2002-05-07 | Sync ulpt driver with NetBSD | Nathan Binkert | |
2002-05-06 | sync uaudio with NetBSD | Nathan Binkert | |
2002-05-06 | typedef for proc * for portability | Nathan Binkert | |
2002-04-01 | Add support for a bunch of new adapters. | Nathan Binkert | |
Sync with NetBSD. ok deraadt | |||
2002-02-27 | We have memcpy and memset in the kernel. | Artur Grabowski | |
2001-11-02 | i do not think everybody needs USB_DEBUG | Michael Shalayeff | |
2001-10-31 | Synchronize usb code with NetBSD. | Nathan Binkert | |
2001-10-02 | make usb work across apm suspends. okay millert@, niklas@, aaron@, deraadt@ | Niels Provos | |
2001-08-23 | Add show_scsipi_xs and show_scsipi_cmd. Closes PR#2008 | Constantine Sapuntzakis | |
2001-06-25 | ether_input_mbuf() conversion. | Federico G. Schwindt | |
2001-06-24 | cold is in systm now | Michael Shalayeff | |
2001-05-03 | Sync with NetBSD. Tested with a USB keyboard, USB mouse, and three different | Aaron Campbell | |
kue(4) Ethernet devices. | |||
2001-02-03 | oops, sleep(9) | Michael Shalayeff | |
2001-02-03 | new timeouts; somebody, fold it back to {f,n}bsd | Michael Shalayeff | |
2001-01-28 | Add USSCANNER_DEBUG defines. | Aaron Campbell | |
2001-01-28 | Another USB sync with NetBSD. We are still lacking an up-to-date umass(4) | Aaron Campbell | |
driver. I would appreciate it if someone with the hardware looked into it. I also have to take a closer look at changes to the USB Ethernet drivers, as well as import some drivers we are missing (uftdi, if_upl, yap, etc.) | |||
2000-11-11 | Change the le32toh() le16toh() macros back to the previous defintion. | Dale Rahn | |
This change is more portable, redefine the macros to use the host letoh32/letoh16 instead of using possibly less efficient bswap routines. | |||
2000-11-08 | Sync with NetBSD. Too many changes to mention. For now I have skipped | Aaron Campbell | |
umass.c and ukbd.c as the diffs are a bit hairier. | |||
2000-09-06 | Match Free/Net macros for le32toh/letoh32, define in terms of the other. | Dale S. Rahn | |
2000-08-26 | Add support for detach of xe and aue. | Nathan Binkert | |
2000-07-04 | sync with NetBSD... well almost. someone w/ the hw should check umass. | Federico G. Schwindt | |
2000-06-29 | Allow USB to compile with USB_DEBUG defined; binkertn@umich.edu | Aaron Campbell | |
2000-04-15 | urio(4) - Diamond Multimedia RIO 500 (from NetBSD) | Jakob Schlyter | |
This driver will eventually go away as it really should be implemented using ugen(4) instead. | |||
2000-04-12 | RCSids. | Aaron Campbell | |
2000-04-05 | Add USB modem driver stubs; from NetBSD. Not yet tested. | Aaron Campbell | |
2000-04-04 | New USB mass storage driver. Improvements: Uses asynchronous USB requests, | Aaron Campbell | |
supports more transport protocols (bulk-only and CBI), supports more command sets (SCSI and ATAPI); from NetBSD. Not yet tested. | |||
2000-03-31 | Add support for USB Mass Storage devices; e.g., USB Zip Drives. UNTESTED. | Aaron Campbell | |
From NetBSD. | |||
2000-03-30 | Sync with NetBSD. USB Ethernet drivers should work now. | Aaron Campbell | |
2000-03-28 | Much cleaner sync with NetBSD. Some #if defined() magic has been sent in the | Aaron Campbell | |
form of a diff to augustss@netbsd.org so that future syncs will be very easy. This commit also adds support for ADMtek AN986 "Pegasus" based USB Ethernet, CATC USB-EL1210A based USB Ethernet, and USB Printers (all untested). | |||
2000-03-26 | Sync with NetBSD. | Aaron Campbell | |
1999-11-07 | sync with NetBSD. | Federico G. Schwindt | |
1999-09-27 | Sync with NetBSD. | Federico G. Schwindt | |
1999-08-19 | Sync with NetBSD. | Federico G. Schwindt | |
1999-08-16 | Sync with NetBSD. Mostly FreeBSD related changes. | Federico G. Schwindt | |
Diffs sent to augustsson. | |||
1999-08-13 | Display the correct name. Thanks niklas@. | Federico G. Schwindt | |