summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-01-14scrub scrub scrubDale Rahn
2005-01-14Default to two virtual screens.Dale Rahn
2005-01-14These files were added in the wrong place, copies of them already existDale Rahn
in the right place, zaurus/include.
2005-01-14Minor KNF and tweaks, also interrupt at IPL_TTY rather than IPL_BIO.Miod Vallat
ok drahn@
2005-01-14Add type for zaurus, ok miod@Dale Rahn
2005-01-14Duplicate nested if statement in PIM code.Ryan Thomas McBride
From brad@
2005-01-14rev 1.63Brad 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-14Add 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-14ubt(4): USB Bluetooth driver, commented out in all kernel configAlexander Yurchenko
files for now. Adopted from FreeBSD for our netbt stack. Help in testing by many, ok markus@
2005-01-14First 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-14RegenMiod Vallat
2005-01-14Sync with latest NetBSD diodevs (device name and ID fixes, and add 425e audio).Miod Vallat
2005-01-14remove old ifgroups ioctlsHenning 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-14Change the device node from /dev/zboot to /proc/zboot to make the mknodUwe Stuehler
step unnecessary. Suggested by miod@
2005-01-14add a 'rollover' timer to detect when a second (inerrupt masked keyDale Rahn
is pressed while keys are being held. allows shift to always work Timeout on this needs to be adjusted.
2005-01-14bounds checking for copystr, copyin and copyinstr;Damien Miller
tested by moritz@ otto@ deraadt@, ok deraadt@
2005-01-14missing DESTDIRTheo de Raadt
2005-01-14cardbus 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-14clean PCI leftoversPeter Valchev
2005-01-14Fix these.Dale Rahn
2005-01-14Support reboot and powerdown.Uwe Stuehler
ok drahn@
2005-01-14Fix direction.Dale Rahn
2005-01-14split re(4) into bus-independent code (ic/re.c) and PCI front-endPeter Valchev
(pci/if_re_pci.c) for soon-to-come cardbus support; ok deraadt
2005-01-14minor prototypes style; ok deraadtPeter Valchev
2005-01-14commit this #if 0 del now.Dale Rahn
2005-01-14prototypes for recently added functions.Dale Rahn
2005-01-14This should be mostly reasonable, most of the keys sane.Dale Rahn
2005-01-14Most (all?) of the keys.Dale Rahn
2005-01-14del obioDale Rahn
2005-01-14Support special 'Fn' keys, at least most of them.Dale Rahn
2005-01-14put the return key on the right key, Del not backspace, still needs altgrDale Rahn
2005-01-13Stage one of wscons support.Dale Rahn
2005-01-13fix a critical bug that made the kernel crash under heavy upstream trafficDamien Bergamini
load. pointed out by jcs@
2005-01-13keyboard driver for zaurus, needs connect to wscons still.Dale Rahn
2005-01-13'quick' function for actual gpio operations, set/clear/read, setdir, clearirqDale Rahn
2005-01-13destatic/inlineDale Rahn
2005-01-13die staticDale Rahn
2005-01-13do not keep references to obio in this.Dale Rahn
2005-01-13dont play with obio, this was very likely always wrong.Dale Rahn
2005-01-13unneeded, bye.Dale Rahn
2005-01-13Drop obio, attach lcd directly to pxaip. Fixes interrupt problems.Dale Rahn
2005-01-13we only need one copy of wsmux.Dale Rahn
2005-01-13dont make this dependant on bus_space_generic, that is bogus.Dale Rahn
keep the define for compat for now.
2005-01-13add usb serial things, ucomm attaches at least.Dale Rahn
2005-01-13protect pfkeyv2_dump_walker with spltdb(). Noticed by mpech@, thanks!Hans-Joerg Hoexer
ok ho@ markus@
2005-01-13HTML page does not seem to exist anymore so point to the PDF for now.Brad Smith
2005-01-12Intel 82443BX DRAM address errata seems to be fixed in the latest revisionsAlexander Yurchenko
of the chipset. Inspired from netbsd pr by scottr@NetBSD.org. ok theo
2005-01-12Try a watchdog reset (that powers off the zaurus) before cpu_reset().Uwe Stuehler
ok drahn@
2005-01-12fix kernel building with option UBSA_DEBUG.Moritz Jodeit
ok dlg@ henning@
2005-01-12Don't call ahc_setup_data() after calling ahc_execute_scb() since theKenneth 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.