Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-07-25 | be carefull about initializing timeouts | Michael Shalayeff | |
2001-07-15 | regen | Michael Shalayeff | |
2001-07-15 | add support for SOHOware NUB100; from Jason Ackley <jason@ackley.net> | Michael Shalayeff | |
2001-07-08 | Don't set up ifq_maxlen manually for drivers that uses IFQ_MAXLEN | Federico G. Schwindt | |
(or ifqmaxlen); it's done in if_attach() now. No future drivers needs to set up this anymore unless they want to use something else. | |||
2001-06-27 | ALTQ'ify network drivers. | Kenjiro Cho | |
- use the new queue macros. - use IFQ_POLL() to peek at the next packet. - use IFQ_IS_EMPTY() for empty check. - drivers should always check if (m == NULL) after IFQ_DEQUEUE(), since it could return NULL even when IFQ_IS_EMPTY() is FALSE under rate-limiting. - drivers are supposed to call if_start from tx complete interrupts (in order to trigger the next dequeue under rate-limiting). | |||
2001-06-25 | ether_input_mbuf() conversion. | Federico G. Schwindt | |
2001-06-24 | cold is in systm now | Michael Shalayeff | |
2001-06-15 | change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange. | Jun-ichiro itojun Hagino | |
follows BSD/OS practice and ucd-snmp code (FreeBSD does it for specific interfaces only). was: if_lastchange get updated on every packet transmission/receipt. now: if_lastchange get updated when IFF_UP is changed. | |||
2001-06-13 | dmesg cleanup | Theo de Raadt | |
2001-06-12 | interrupts cannot happen before | Michael Shalayeff | |
*hci cannot receive interrupts before it has been initialized. this was changed to accomodate the pcibios strategy change back in pre-2.9 times since *hci_init enables interrupts at it's end and thus unmapped pci interrupt hangs the machine in the endless loop trying to deliver it (and no hci handler to ack it). this new way we disable interrupts by hands before we map 'em on pci and thus ensure that they will not crash an uninitialized *hci which, in turn, will run right after the interrupt map/establish and by the time it enables *hci interrupts all gonna be just fine. please allow us to end this stretched remark for cvs is getting a power outage in less than 20 minutes. | |||
2001-05-24 | Angelos' Fuji camera is an 8070i device and it only accepts 12 byte CDBs. | Constantine Sapuntzakis | |
I'm going to guess that ATAPI and QIC157 devices also want 12-byte CDBs. So, pad CDBs to be 12 bytes for ATAPI, QIC157, 8070i (as well as UFI devices) Also, remove an overly paranoid check in BBB state machine which actually violates the spec. This is half of getting Angelos' Olympus camera to work. The other half involves a semi-violent rewrite of the sd scsi driver to make it more tolerant. | |||
2001-05-03 | Sync with NetBSD. Tested with a USB keyboard, USB mouse, and three different | Aaron Campbell | |
kue(4) Ethernet devices. | |||
2001-03-25 | Missing splx(). Thanks to dawson and team for finding this one | Constantine Sapuntzakis | |
2001-03-25 | Missing splx(). Thanks to dawson and team for finding this one | Constantine Sapuntzakis | |
2001-03-25 | Avoid dereferencing a null pointer | Constantine Sapuntzakis | |
2001-03-22 | contify usbdevs a little | Michael Shalayeff | |
2001-03-07 | Add some non US encodings. Add option UKBD_LAYOUT. -moj ok @aaron | Mats O Jansson | |
2001-03-01 | Add CTRL-ALT-DEL machine reset support, like PCVT had, enabled by the | Aaron Campbell | |
machdep.kbdreset sysctl as configured in /etc/sysctl.conf. | |||
2001-02-24 | #else if/#elif | Michael Shalayeff | |
2001-02-20 | for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ ok | Michael Shalayeff | |
2001-02-20 | Compile with USCANNER_DEBUG, implied by USB_DEBUG. | Hakan Olsson | |
2001-02-20 | Forgot $OpenBSD$ tags | Nathan Binkert | |
2001-02-20 | Add the uftdi driver for the FTDI usb->serial converter. | Nathan Binkert | |
Driver from NetBSD. ok aaron@ | |||
2001-02-11 | Allow up to 12 virtual terminals (CTRL-ALT-F1 through CTRL-ALT-F12). Only | Aaron Campbell | |
6 are enabled by default. After these changes, to enable more you must change the "option WSDISPLAY_DEFAULTSCREENS" in the kernel config file and edit /etc/ttys to switch the new ones from 'off' to 'on'. | |||
2001-02-04 | Permit scrollback (SHIFT+PGUP/PGDN) to be activated from a USB keyboard. | Aaron Campbell | |
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-30 | sync | Theo de Raadt | |
2001-01-30 | AboCom URE450 | Theo de Raadt | |
2001-01-29 | Pull in updates from NetBSD 1.49. Mostly support for a couple more | Constantine Sapuntzakis | |
quirky devices. | |||
2001-01-29 | Add recently added files to the list. | Aaron Campbell | |
2001-01-29 | Add a transient driver for the Y@P phone that downloads firmware into | Aaron Campbell | |
the EZ-USB chip. After downloading the firmware the device detaches and then reattaches as a composite device (audio + HID). From NetBSD. /* XXX - untested */ Commented out in GENERIC for now, since this sounds like a kind of rare and weird device that no one would have. But it might be useful to have an example driver like this in the tree in case we see more (important) USB devices in the future using the EZ-USB. | |||
2001-01-29 | Add ezload, subroutines for downloading firmware into Cypress (formerly | Aaron Campbell | |
Anchor) EZ-USB chips. From NetBSD. /* XXX - untested */ | |||
2001-01-28 | Add USSCANNER_DEBUG defines. | Aaron Campbell | |
2001-01-28 | Fix callout/timeout difference that did not quite get merged correctly. | Dale Rahn | |
Uses were correct, just definition did not get moved appropriately. | |||
2001-01-28 | Add driver for Prolific PL2301/PL2302 host-to-host adapter. From NetBSD. | Aaron Campbell | |
/* XXX - untested */ Note: just reminding myself that I need to create a nice diff for Lennart to further portablize the USB code (I fell behind in doing this). In particular, for this driver, the IF_INPUT() macro just does ether_input() in OpenBSD, but we really want to call the local upl_input() routine. | |||
2001-01-28 | Add driver for HP5300 scanner which uses a homebrew SCSI-over-USB protocol. | Aaron Campbell | |
From NetBSD. /* XXX - untested */ | |||
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.) | |||
2001-01-28 | sync | Aaron Campbell | |
2001-01-28 | Many new devices; from NetBSD. | Aaron Campbell | |
2001-01-27 | sync | Theo de Raadt | |
2001-01-27 | re-arrange tables as pcidevs was changed; huge space savings | Theo de Raadt | |
2001-01-27 | shrink this a lot; when you boot your kernel, do you need to know that a ↵ | Theo de Raadt | |
company is a Ltd? No, I did not think so | |||
2001-01-25 | spelling | Todd T. Fries | |
2001-01-22 | fix pretty printing | Theo de Raadt | |
2000-12-11 | Avoid repeated 'host controlled halted' messages. (jakob@ ok) | Hakan Olsson | |
2000-12-05 | sync | Theo de Raadt | |
2000-12-05 | kernel bloat is a sin | Theo de Raadt | |
2000-12-05 | sync | Theo de Raadt | |
2000-12-05 | new IODATA USB-ET/T is a KL5KUSB101B; ori@tahoo.org | Theo de Raadt | |