summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-01-18Resource map code is not used anymore. Long live the extent code!Miod Vallat
2002-01-18Replace resource maps with extents.Miod Vallat
This one was tricky but the light came at 3am.
2002-01-18Replace resource maps with extents.Miod Vallat
This is completely untested due to lack of access to such hardware. cvs: ----------------------------------------------------------------------
2002-01-18record ctime for the mountpoint, mount time or last mount update; art@ okMichael Shalayeff
2002-01-17Enable the sab82532 driver (serial console for u5/u10/u30, etc).Jason Wright
2002-01-17Better handling of transitions between our mode and what the prom wants.Jason Wright
2002-01-17add polled input handling and remove dead codeJason Wright
Also add support for Break->DDB handling on console [Works in ddb including going back and forth to the PROM, but locks up after printing the 'swap on ...' line]
2002-01-17Allow nested interrupts on the mac interrupt controllers, previouslyDale Rahn
the external interrupt was never enabled during interrupt handling.
2002-01-17Add console handling (output works, input needs more work)Jason Wright
[Very close to being able to enable 'se' in GENERIC...]
2002-01-17I'm a tree breaker... sorry... don't include "kbd.h"Jason Wright
2002-01-17Replace resource maps with extents.Miod Vallat
2002-01-16Replace resource maps with extents. 3 files left to go...Miod Vallat
2002-01-16use queue.h macro'sEric Jackson
remove register
2002-01-16keyboards are not directly accessibleJason Wright
2002-01-16add zskbd* and enable cg3 and cg6Jason Wright
2002-01-16More removal of tty stuffJason Wright
add support for updating LED status add ScrollLock keysym [Committed from the console of a u1 with wsdisplay at cgsix and wskbd at zskbd =]
2002-01-16Make our minds and do not list the same line, once commented, once not.Miod Vallat
2002-01-16Replace resource maps with extents.Miod Vallat
2002-01-16Don't include <sys/map.h> when you don't need what's in it.Miod Vallat
2002-01-16Enable the traditional Stop-A handlingJason Wright
Prepare for being able to set the LED's Clean some of the tty cruft (more of this to come)
2002-01-16Send input to wskbd_input() instead of line discipline and make sure RIE is set.Jason Wright
2002-01-16Initialize the rest of the wskbd_mapdata structure.Jason Wright
Clean up and remove alot of debugging crap Fix the initialization state machine. [State: works as console keyboard in polled mode... interrupt mode to go...]
2002-01-16Add a sun keyboard typeJason Wright
2002-01-15add spif* at sbus?Jason Wright
2002-01-15allow zskbd* at zs?Jason Wright
2002-01-15Frontend driver for keyboards attached to zs's (instead of zstty's).Jason Wright
Doesn't really work yet, but it's not terribly far off. This is a work in progress..
2002-01-15A fix to amap_wiperange from Chuck Cranor that has been in my tree forArtur Grabowski
a while. With his words: " here is a fix for a bug in amap_wiperange (was posted on netbsd's tech-kern list). i screwed up the loop control :("
2002-01-15allocate sackholes with poolNiels Provos
2002-01-15change tcpcb allocation to poolNiels Provos
2002-01-14volatile police.Miod Vallat
2002-01-14knfNiels Provos
2002-01-14knfNiels Provos
2002-01-14knfNiels Provos
2002-01-14typoNiels Provos
2002-01-14use macros to manage tcp timers; based on netbsdNiels Provos
2002-01-14The return value of lcsplx is used in locore. however at some pointDale Rahn
the function was changed to be void. return the cpl value at the time the function is called as locore.S expects.
2002-01-13better accounting for 'soft' interrupts, before all exceptions wereDale Rahn
counted as soft interrupts.
2002-01-13Regress this one additional change, with this change more systemsDale Rahn
successfully ran 'make build'.
2002-01-13Better error handling: unmap registers on failure and better checking onJason Wright
whether the spif is found at open(2) time.
2002-01-13108 and 109 should point to stty/sbpp not mtty/mbppJason Wright
2002-01-13Port of my spif driver to sparc64 (untested)Jason Wright
2002-01-13comment typosJason Wright
2002-01-12Don't cast return value from splx to (void) because splx doesn't return ↵Artur Grabowski
anything.
2002-01-12the 1190 and 1400 register maps aren't the same size don't treat them soJason Wright
(basically this was a cut and pasto).
2002-01-12House cleaning: removing some leftover sparc bits and suchJason Wright
2002-01-12Port of Iain Hibbert's magma driver to sparc64Jason Wright
2002-01-12Not used.Miod Vallat
2002-01-12Don't try UDMA modes if they aren't supported by the controllerJason Wright
even if the flags enable it. chris@ ok
2002-01-12- Only apply fastroute and route-to if we are going in the samejasoni
direction as the rule. - ok dhartmei@
2002-01-12add rediraccept and redirtimeout sysctl's.Eric Jackson
rediraccept allows one to ignore ICMP_REDIRECT redirtimeout sets a timeout on the routing entries pretaining to ICMP_REDIRECT, this timeout is defaulted to 10 minutes. (same as ipv6) From NetBSD. millert@ ok