Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-02-09 | Bad aaron. Broke alpha. | Artur Grabowski | |
2001-02-09 | Handle vr_encap() failure. From FreeBSD. | Aaron Campbell | |
2001-02-09 | Sync with FreeBSD: | Aaron Campbell | |
- Bugfix: 'reg' variable in dc_apply_fixup() needs to be u_int32_t. - Bugfix: bzero() mediainfo structures after allocation. - Call dc_apply_fixup() in dc_setcfg() for the MII case. - Conditionalize some code in miibus_{read,write}reg to make non-mx98713 cards happy. | |||
2001-02-09 | Add support for parsing the media blocks from the SROM on the 21143 adapters. | Aaron Campbell | |
These changes should make the driver work with the built-in Ethernet on the Alpha Miata machines. From FreeBSD. To make sure I didn't break anything (and as a general test), I tested the modified driver with the following dc(4) variants: Macronix PMAC 98715, Lite-On PNIC, Lite-On PNIC-II, ADMtek AL981, and ADMtek AN983. | |||
2001-02-08 | Use <scsi/scsi_message.h> defines rather than homegrown ones. | Kenneth R Westerback | |
2001-02-08 | Cause keypresses to reset the screen in case we are in scrollback (previously | Aaron Campbell | |
the screen was only restored if a new character was actually displayed on the screen); jcs@rt.fm. This brings us closer to the behavior of PCVT. Also, while I'm here, add some #ifdef so wskbd does not depend on wsdisplay (pointed out to me by fgsch@). | |||
2001-02-07 | ok, commit this since it most likely to work; i guess now it will get tested ↵ | Michael Shalayeff | |
a little bit sooner than in a few months; 10x brad@ | |||
2001-02-06 | Laptop ICH2 IDE | Chris Cappuccio | |
2001-02-06 | sync | Chris Cappuccio | |
2001-02-06 | Laptop ICH2 IDE | Chris Cappuccio | |
2001-02-05 | WSMOUSEIO_SRES, WSMOUSEIO_SSCALE and WSMOUSEIO_SRATE are _IOW(), not _IOR() | Matthieu Herrb | |
2001-02-04 | Permit scrollback (SHIFT+PGUP/PGDN) to be activated from a USB keyboard. | Aaron Campbell | |
2001-02-03 | Violent cleanup of the code. Lots of effort duplication removed. | Artur Grabowski | |
Don't look into the headers in read, just build the headers in attach and ignore them. mmap should now work (when boot loaders are fixed to align the tables). Support for ELF. | |||
2001-02-03 | oops, sleep(9) | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts; somebody, fold it back to {f,n}bsd | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts; this makes whole pci new timeouts user | Michael Shalayeff | |
2001-02-03 | fix the comment | Michael Shalayeff | |
2001-02-03 | new timeout, even not in generic | Michael Shalayeff | |
2001-02-03 | new timeout, space control | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | new timeouts | Michael Shalayeff | |
2001-02-03 | no machine/pio.h is needed, space police | Michael Shalayeff | |
2001-02-03 | new timeouts, space control | Michael Shalayeff | |
2001-02-03 | make it compile, new timeouts, space control | Michael Shalayeff | |
2001-02-03 | no timeouts is new timeouts | Michael Shalayeff | |
2001-02-02 | $OpenBSD$ | Aaron Campbell | |
2001-02-02 | $OpenBSD$ | Aaron Campbell | |
2001-02-02 | Remove dead code. | Aaron Campbell | |
2001-02-02 | No need for xl(4) to report tx underruns, they are much too common, and the | Aaron Campbell | |
driver adjusts itself to compensate anyway; jason@ ok. | |||
2001-02-02 | Fix an uninitialized variable; henric@aimnet.com | Aaron Campbell | |
2001-02-02 | The read/write indication bit in DMAERR reg is bit 1, not bit 0 | Jason Wright | |
also, add a mask for the address portion of DMAERR and use it | |||
2001-02-01 | adapt to wscons type changes. | Artur Grabowski | |
2001-02-01 | Fix the wsmux_setmax() function. By the time wsmuxattach() runs (through hook | Aaron Campbell | |
in ioconf.c created by the wsmux pseudo-device), an input device may have already attached itself as a mux. We don't want to whack these pointers. Net result: the PS/2 mouse on my laptop is now properly mux'd. Right now I have my laptop's builtin keyboard and builtin mouse (ps/2), plus I have attached a separate USB keyboard and USB mouse. All four devices are accepting input at the same time. If I want to go mobile, I can unhook the USB devices and my builtin devices will still work without changing X settings. Very cool. | |||
2001-02-01 | Do not attempt to attach cards that have unsupported (i.e., non-5, non-3) | Aaron Campbell | |
voltages. Fixes the problem with those silly SCM Microsystems PCI-CardBus dock boards that are often shipped with Lucent WaveLAN cards. Thanks to drahn@openbsd.org for testing and dave@arbor.net for originally reporting the problem. | |||
2001-01-31 | Allocate shared memory via the bus_dmamem/bus_dmamap interface; makes le | Thorsten Lockert | |
interface work under VMware as an additional bonus. ok theo@ | |||
2001-01-31 | based on art's sparc patch: | Jason Wright | |
mmap should return -1 on failure, not EOPNOTSUPP. As it was now, an mmap of /dev/mem always returned page 45. | |||
2001-01-31 | OpenBSD does have paddr_t, I can't explain why I thought it didn't; art@ | Aaron Campbell | |
2001-01-31 | before copying the packet header, make sure we actually got the mbuf | Jason Wright | |
2001-01-31 | Some int -> u_long (I incorrectly converted paddr_t to int when porting this). | Aaron Campbell | |
2001-01-30 | sync | Theo de Raadt | |
2001-01-30 | AboCom URE450 | Theo de Raadt | |
2001-01-30 | Pass the correct MUX type to wsmux_attach_sc(). | Aaron Campbell | |
2001-01-30 | - Add some checks for (sc != NULL). Missed by me previously. Fixes boot -c. | Aaron Campbell | |
- Remove static. | |||
2001-01-30 | KNF from niklas@. :) | Hakan Olsson | |