summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-03-09give some dadaical credits and disable debuggingMichael Shalayeff
2001-03-09Add Belgian keymap for wscons; addresses PR/1592 from TDeval@PrimeOBJ.COM.Aaron Campbell
2001-03-09regenArtur Grabowski
2001-03-09Add mlockall and munlockall (dummy for the old vm system).Artur Grabowski
2001-03-09Remove two unnecessary splx(). This was missed somewhere along the way, sinceAaron Campbell
this was done long ago in NetBSD during an update to ppp-2.3b4.
2001-03-09More syncing to NetBSD.Artur Grabowski
Implements mincore(2), mlockall(2) and munlockall(2). mlockall and munlockall are disabled for the moment. The rest is mostly cosmetic.
2001-03-09enable in kernel configs at 42%Michael Shalayeff
2001-03-09seems to work; rush because of cvs's battery at 73% nowMichael Shalayeff
2001-03-09proper irq printout (like other busses)Michael Shalayeff
2001-03-09differentiate fifo overrun errorsMichael Shalayeff
2001-03-09kernel will compile with -Werror. Added intr.hSteve Murphree
2001-03-09Protect protypes, certain macros, and inlines from userland. Checked userlandsmart
with a 'make build'. From NetBSD. art@ ok
2001-03-09PATH_MAX+1 is wrong. Not cranking libc/libc_r majors over this, since they ↵Theo de Raadt
just got cranked a little while ago. discussion with millert
2001-03-09Move nanosleep() proto to from sys/time.h to time.h where it belongs.Todd C. Miller
Problem noted by Jean-Baptiste Marchand
2001-03-08Include <machine/asm_macro.h>, reorder include files list.Miod Vallat
2001-03-08Define ff1() as a one-liner assembly inline, rather than a function inMiod Vallat
locore_asm_routines.
2001-03-08Forgot to add this file yesterday, as part of the new include files,Miod Vallat
for convenience of drivers.
2001-03-08Replace thread_wakeup() with wakeup(). It is defined in vm_extern.h as asmart
wrapper, so this removes a dependence on the old VM system. From NetBSD. art@ ok
2001-03-08indentationArtur Grabowski
2001-03-08Be more careful about who we treat as the syncer.Artur Grabowski
2001-03-08make nd6_storelladdr()'s behavior consistent about mbuf freeing on errors.Jun-ichiro itojun Hagino
do not touch static ND entry on ND cache entry updates. couple of costmetic sync. sync with kame
2001-03-08more missing splx. sync with kameJun-ichiro itojun Hagino
2001-03-08Make struct wscons_keydesc public. To make it possible for kbd(1) toMats O Jansson
list known encodings. -moj ok @aaron
2001-03-08move gif* and faith* into sys/conf/GENERIC. deraadt and angelos okJun-ichiro itojun Hagino
2001-03-08configure usb devices and raidEric Jackson
2001-03-08remove bogus rtfree. inspired by fix to PR 1706. sync with kameJun-ichiro itojun Hagino
2001-03-08Some warning hunting.Miod Vallat
2001-03-08Some warning hunting.Miod Vallat
Define new include files for convenience, for use by drivers who can attach either to pcctwo or syscon, or need bug console routines.
2001-03-08Some warning hunting.Miod Vallat
2001-03-07and this will produce a cubios mickeyMichael Shalayeff
2001-03-07Correct argument order for branch_taken's callback function.Miod Vallat
2001-03-07Fix open comment.Miod Vallat
2001-03-07Simplification of the interrupt handler prototype and calling convention:Miod Vallat
they can either ask for a fixed void* argument, or an execution frame, but not both anymore - no handler used this third flavour anyway. Add code for UKC. While there, some warning hunting.
2001-03-07Correct the diagnostic code in flush_atc_entry.Miod Vallat
This function may be called for a pmap which is not marked as tied to any cpu, which is acceptable behaviour. While there, some warning hunting.
2001-03-07Include <machine/cpu.h> for non-locore code.Miod Vallat
This makes sure code including <machine/param.h> will get prototypes for setsoftXXX macros - there is code in the tree which depends on this.
2001-03-07Remove 68k-isms, fix interrupt handler prototypes, warning hunting.Miod Vallat
2001-03-07Fix interrupt handler registration and prototypes.Miod Vallat
While there, some warning hunting.
2001-03-07Strict prototypes for interrupt handlers and a few machine-dependentMiod Vallat
callbacks. While there, some warning hunting.
2001-03-07Get rid of definitions of ASSEMBLER, LOCORE and such. We will getMiod Vallat
the correct defines from the Makefile now.
2001-03-07_KERNEL, not KERNEL, dammit !Miod Vallat
2001-03-07Inclusion from assembly code is detected with _LOCORE, no more fancy symbols.Miod Vallat
2001-03-07General cleanup in the kernel compilation process, sync style withMiod Vallat
other ports, add warning flags.
2001-03-07ssh replaces siop here, too...Miod Vallat
2001-03-07More careful spl usage for the IPSEC case in ip_output(); from angelos@Aaron Campbell
2001-03-07missing splx. from aaron. sync with kameJun-ichiro itojun Hagino
2001-03-07lca and apecs buses need sgmap glue as well.Eric Jackson
pointed out by wasilx@forest.ihep.su - PR1713
2001-03-07Remove a bogus rtfree(); PR 1706brian
2001-03-07Add some non US encodings. Add option UKBD_LAYOUT. -moj ok @aaronMats O Jansson
2001-03-07C requires labels to be followed by statements; from NetBSD.Aaron Campbell
2001-03-07Instead of panic'ing when an ESC is found in kernel output, print a warningAaron Campbell
and ignore it; from NetBSD.