Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-01-14 | scrub scrub scrub | Dale Rahn | |
2005-01-14 | Default to two virtual screens. | Dale Rahn | |
2005-01-14 | These files were added in the wrong place, copies of them already exist | Dale Rahn | |
in the right place, zaurus/include. | |||
2005-01-14 | Minor KNF and tweaks, also interrupt at IPL_TTY rather than IPL_BIO. | Miod Vallat | |
ok drahn@ | |||
2005-01-14 | Add type for zaurus, ok miod@ | Dale Rahn | |
2005-01-14 | Duplicate nested if statement in PIM code. | Ryan Thomas McBride | |
From brad@ | |||
2005-01-14 | rev 1.63 | Brad Smith | |
Avoid an unnecessary copy of a packet if it is already in a single mbuf. Introduce an additional device flag for those NICs which require the transmit buffers to be aligned to 32-bit boundaries. From FreeBSD | |||
2005-01-14 | Add kernel support for Protocol Independant Multicast (PIM) | Ryan Thomas McBride | |
Information: http://netweb.usc.edu/pim/ From Pavlin Radoslavov <pavlin@icir.org> ok deraadt@ brad@ | |||
2005-01-14 | ubt(4): USB Bluetooth driver, commented out in all kernel config | Alexander Yurchenko | |
files for now. Adopted from FreeBSD for our netbt stack. Help in testing by many, ok markus@ | |||
2005-01-14 | First step in Bluetooth protocol stack support. | Alexander Yurchenko | |
The code is adopted from the FreeBSD netgraph-based Bluetooth implementation by Maksim Yevmenkin <m_evmenkin@yahoo.com> but all netgraph glue was replaced with usual BSD network stack hooks. This is a work in progress. Only HCI layer works for now, L2CAP and RFCOMM are on the way. Help in testing from many, ok markus@. | |||
2005-01-14 | Regen | Miod Vallat | |
2005-01-14 | Sync with latest NetBSD diodevs (device name and ID fixes, and add 425e audio). | Miod Vallat | |
2005-01-14 | remove old ifgroups ioctls | Henning Brauer | |
the old ifgroups haven't been in use ever really, and the new implementation is 3 months old today. theo ok (3 months ago) | |||
2005-01-14 | Change the device node from /dev/zboot to /proc/zboot to make the mknod | Uwe Stuehler | |
step unnecessary. Suggested by miod@ | |||
2005-01-14 | add a 'rollover' timer to detect when a second (inerrupt masked key | Dale Rahn | |
is pressed while keys are being held. allows shift to always work Timeout on this needs to be adjusted. | |||
2005-01-14 | bounds checking for copystr, copyin and copyinstr; | Damien Miller | |
tested by moritz@ otto@ deraadt@, ok deraadt@ | |||
2005-01-14 | missing DESTDIR | Theo de Raadt | |
2005-01-14 | cardbus re(4) support (Realtek 8169) heavily based on if_rl. | Peter Valchev | |
still work in progress but it works (this is committed through it), some PHY timeout issues to resolve | |||
2005-01-14 | clean PCI leftovers | Peter Valchev | |
2005-01-14 | Fix these. | Dale Rahn | |
2005-01-14 | Support reboot and powerdown. | Uwe Stuehler | |
ok drahn@ | |||
2005-01-14 | Fix direction. | Dale Rahn | |
2005-01-14 | split re(4) into bus-independent code (ic/re.c) and PCI front-end | Peter Valchev | |
(pci/if_re_pci.c) for soon-to-come cardbus support; ok deraadt | |||
2005-01-14 | minor prototypes style; ok deraadt | Peter Valchev | |
2005-01-14 | commit this #if 0 del now. | Dale Rahn | |
2005-01-14 | prototypes for recently added functions. | Dale Rahn | |
2005-01-14 | This should be mostly reasonable, most of the keys sane. | Dale Rahn | |
2005-01-14 | Most (all?) of the keys. | Dale Rahn | |
2005-01-14 | del obio | Dale Rahn | |
2005-01-14 | Support special 'Fn' keys, at least most of them. | Dale Rahn | |
2005-01-14 | put the return key on the right key, Del not backspace, still needs altgr | Dale Rahn | |
2005-01-13 | Stage one of wscons support. | Dale Rahn | |
2005-01-13 | fix a critical bug that made the kernel crash under heavy upstream traffic | Damien Bergamini | |
load. pointed out by jcs@ | |||
2005-01-13 | keyboard driver for zaurus, needs connect to wscons still. | Dale Rahn | |
2005-01-13 | 'quick' function for actual gpio operations, set/clear/read, setdir, clearirq | Dale Rahn | |
2005-01-13 | destatic/inline | Dale Rahn | |
2005-01-13 | die static | Dale Rahn | |
2005-01-13 | do not keep references to obio in this. | Dale Rahn | |
2005-01-13 | dont play with obio, this was very likely always wrong. | Dale Rahn | |
2005-01-13 | unneeded, bye. | Dale Rahn | |
2005-01-13 | Drop obio, attach lcd directly to pxaip. Fixes interrupt problems. | Dale Rahn | |
2005-01-13 | we only need one copy of wsmux. | Dale Rahn | |
2005-01-13 | dont make this dependant on bus_space_generic, that is bogus. | Dale Rahn | |
keep the define for compat for now. | |||
2005-01-13 | add usb serial things, ucomm attaches at least. | Dale Rahn | |
2005-01-13 | protect pfkeyv2_dump_walker with spltdb(). Noticed by mpech@, thanks! | Hans-Joerg Hoexer | |
ok ho@ markus@ | |||
2005-01-13 | HTML page does not seem to exist anymore so point to the PDF for now. | Brad Smith | |
2005-01-12 | Intel 82443BX DRAM address errata seems to be fixed in the latest revisions | Alexander Yurchenko | |
of the chipset. Inspired from netbsd pr by scottr@NetBSD.org. ok theo | |||
2005-01-12 | Try a watchdog reset (that powers off the zaurus) before cpu_reset(). | Uwe Stuehler | |
ok drahn@ | |||
2005-01-12 | fix kernel building with option UBSA_DEBUG. | Moritz Jodeit | |
ok dlg@ henning@ | |||
2005-01-12 | Don't call ahc_setup_data() after calling ahc_execute_scb() since the | Kenneth R Westerback | |
scb may have been freed or made active. Only affects XS_RESET case. More correctly mirrors FreeBSD code. Already done to aic79xx_openbsd.c in r1.16. |