Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-06 | - section reorder | Jason McIntyre | |
- new sentence, new line - some macro fixes | |||
2003-06-04 | mop up some more 3/4 license issues | Theo de Raadt | |
2003-06-04 | more term 3 & 4 from various developers, with permission of course | Theo de Raadt | |
2003-06-04 | more term 3 and 4 changes | Theo de Raadt | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-06-02 | Relax licence by removing the 3rd clause on all files whereI was still | Miod Vallat | |
using a 3 clause licence. | |||
2003-06-02 | snprintf here too. | Miod Vallat | |
2003-06-02 | licence cleanup | Theo de Raadt | |
2003-06-01 | strcpy/strcat/sprintf removal in all bootblocks. various testing by | Theo de Raadt | |
various people. outside of some messy things in src/gnu, only one thing in the main tree now violates this rule: bind | |||
2003-06-01 | Remove unused variable. | Miod Vallat | |
2003-05-30 | Working process core dumps, borrowed from m68k code. | Miod Vallat | |
2003-05-23 | remove old swapgeneric.c's | Ted Unangst | |
2003-05-23 | move swapgeneric to truly generic code. tested on many archs by miod and ↵ | Ted Unangst | |
mickey. | |||
2003-05-14 | add {b,c}devsw_lookup convenience functions. | Ted Unangst | |
move chrtoblk and blktochr into MI code. tested on several archs and ok deraadt@ | |||
2003-05-13 | Add option NO_PROPOLICE, which explicitely disables the use of the propolice | Miod Vallat | |
stack protection when building kernels. Intended to be used on installation media, with tight space constraints - currently, only added where SMALL_KERNEL was already defined. Not thoroughly tested, but requested by deraadt. | |||
2003-05-13 | remove -fno-stack-protector (enable propolice) | Ted Unangst | |
ok deraadt@ | |||
2003-05-11 | string cleaning; krw ok | Theo de Raadt | |
2003-05-08 | EXAMPLE -> EXAMPLES in .Sh section, as per mdoc template. | Jason McIntyre | |
crunch stuff still needs a bit of work. | |||
2003-04-16 | Clarify license terms. | Miod Vallat | |
2003-04-10 | more POSIX chown | Todd C. Miller | |
2003-04-06 | strcat/strcpy/sprintf cleanup. krw@, anil@ ok. art@ tested sparc64. | Hakan Olsson | |
2003-04-06 | Some easy strcpy elimination. | Kenneth R Westerback | |
a) strcpy -> strncpy for copies into disklabel fields d_packname and d_typename. b) '16' -> 'sizeof d_packname' or 'sizeof d_typename' in existing strncpy's. ok millert@ | |||
2003-04-06 | The disklabel fields d_packname and d_typename are not null terminated strings | Kenneth R Westerback | |
and should not be created or used as such. This fixes some instances of both behaviours, and sets the stage for some strcpy -> strncpy fixup. ok tdeval@ millert@ deraadt@ | |||
2003-03-16 | Old unused stuff left under the carpet. | Miod Vallat | |
2003-03-08 | more deletions | Theo de Raadt | |
2003-03-08 | bye bye, noted by david | Theo de Raadt | |
2003-03-06 | date should be written formally: .Dd Month day, year | David Krause | |
ok henning@ jmc@ | |||
2003-02-18 | copyrights added; | Jason McIntyre | |
*installboot*: all Paul Kranenburg pppctl(8): Brian Somers rpc.bootparamd(8): public domain | |||
2003-02-11 | be consistant on Hz vs hz | Michael Shalayeff | |
2003-01-28 | pad < minimal length packets with 0's; based on netbsd; tested by miod | Jason Wright | |
2003-01-24 | Convert m88k pmap from physseg to VM_PAGE_MD. | Miod Vallat | |
This allows us to remove some ambiguities on how some functions are called, remove some diagnostic checks for conditions that can never happen and remove the ugly hack with "pmap_initialized". Then, rework internal function interfaces and some logic so as to stop fetching vm_page from a pa and the reverse every now and then - this makes some pmap operations run much faster. While there, various KNF and whitespace fixes, and rename some structure fields to be closer to the m68k pmap. per art@'s idea. | |||
2003-01-24 | PMAP_{DE,}ACTIVATE are not used anymore. | Miod Vallat | |
2003-01-14 | Define exception vector tables as assembly source, with the appropriate | Miod Vallat | |
macros, rather than include files - no need to pollute <machine/> area... | |||
2003-01-13 | Clean up ipl handling: be sure to always return valid levels in getipl(), | Miod Vallat | |
and check input level in setipl() if DIAGNOSTIC. Doing this pointed out an horrible bug where exception frames would refer to the saved ipl at the time the exception was processed, but would not save it before, and the joys of stack values would make it a correct value 90% of the time. Of course, bad things could happen when restoring the ``saved'' ipl... | |||
2003-01-13 | Missing splx() | Miod Vallat | |
2003-01-09 | Remove fetch(9) and store(9) functions from the kernel, and replace the few | Miod Vallat | |
remaining instances of them with appropriate copy(9) usage. ok art@, tested on all arches unless my memory is non-ECC | |||
2003-01-07 | Remove duplicate SRX definition. | Miod Vallat | |
2003-01-04 | On MVME187, detect the on-board memory size by probing the memory controllers | Miod Vallat | |
like on mvme68k, rather than attempting to find the first off-board memory location. | |||
2003-01-04 | Fix a few pcctwo attachment addresses | Miod Vallat | |
2003-01-04 | Don't define splassert goo if _LOCORE | Miod Vallat | |
2003-01-04 | Correctly invoke pmap_enter() [fix last argument] | Miod Vallat | |
2003-01-04 | A va_copy macro without drugs inside. Shupid miod. | Miod Vallat | |
2003-01-03 | splassert support for m88k | Miod Vallat | |
2003-01-03 | Provide a simple va_copy() implementation. | Miod Vallat | |
2003-01-02 | Adapt to recent changes in libc/libc_r wrt weak symbols, so that programs | Miod Vallat | |
can link against libc without unresolved symbols again. Anyone who correctly guessed that my m88k hard drive has been recovered, wins a strawberry lollipop. | |||
2003-01-01 | Fill cpu_model, so that sysctl hw.model produces something interesting. | Miod Vallat | |
2002-12-25 | No need to define FOO?=foo for AS, CC, CPP and LD, as they are always already | Miod Vallat | |
set from <sys.mk> | |||
2002-12-17 | Make SysV-style shared memory and semaphore limits sysctl'able. | Todd C. Miller | |
Instead of allocating a static amount of memory for the data structures via valloc() in allocsys(), allocate things dynamically using pool(9) when possible and malloc(9) when not. The various members of struct seminfo and struct shminfo are in kern.seminfo and kern.shminfo respectively (not all members of kern.seminfo are changable). The data structures used still leave something to be desired but things are not made worse in that respect by this commit. | |||
2002-12-14 | handelr -> handler | Federico G. Schwindt | |