Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-06 | - section reorder | Jason McIntyre | |
- new sentence, new line - some macro fixes | |||
2003-06-04 | Delete UCB term 3. When there are other copyright owners, we affirm | Theo de Raadt | |
that we can see no legal situation under which they could require that term to remain (ie. This is equivelant to us taking the old UCB file, removing term 3 as specified by UCB, then re-applying each diff afterwards from the various authors) | |||
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-03 | kill clause 3 and 4 from several of my copyrights, cleanup. | Dale Rahn | |
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 | Need snprintf here. | Miod Vallat | |
2003-06-02 | license cleanup of my files | 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-05-31 | Don't use orw with a > 16 bits constant. | Miod Vallat | |
2003-05-30 | Sync the core dump routine with hp300; generates correct coredumps again. | 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-25 | - added missing .Ed | Jason McIntyre | |
- new sentence, new line - whitespace at EOL removed | |||
2003-04-16 | Clarify license terms. | Miod Vallat | |
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-03-06 | date should be written formally: .Dd Month day, year | David Krause | |
ok henning@ jmc@ | |||
2003-02-24 | Use MAKEDISKDEV and DISKUNIT macros instead of rolling our own inline version | Miod Vallat | |
of them. | |||
2003-02-24 | Do not redefine stuff already in <sys/disklabel.h> | Miod Vallat | |
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-02-07 | typos; | Jason McIntyre | |
2003-01-28 | pad < minimal length packets with 0's; based on netbsd; tested by miod | Jason Wright | |
2003-01-27 | Convert m68k 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. per art@'s idea. | |||
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-05 | splassert on m68k-based arches. Not totally accurate on hp300 at the moment, | Miod Vallat | |
still. | |||
2003-01-04 | memsize() serves no purpose anymore | Miod Vallat | |
2003-01-04 | When detecting the memory size on 167 and 177, probe both memory controllers | Miod Vallat | |
instead than only the first one. From NetBSD | |||
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 | handeled -> handled; reported by someone on the list, but i no longer | Federico G. Schwindt | |
have the mail. | |||
2002-12-09 | From Andrushock, s/sucess/success/g | Todd C. Miller | |
2002-12-05 | remove altq entries. | Kenjiro Cho | |
altq is merged into pf and handled through pf. | |||
2002-12-02 | Import propolice (http://www.trl.ibm.com/projects/security/ssp), a stack | Miod Vallat | |
attack protection scheme, into gcc. This protection is enabled by default. It can be turned off by using the -fno-stack-protector flag. Code by Hiroaki Etoh (etoh at jp dot ibm dot com); work on openbsd-specific integration by fgsch@, deraadt@ and myself; tests by fgsch@, naddy@ and myself; beer drinking by myself. Please note that system upgrades with this new code will require a new libc and ld.so to be build and installed before the propolice-enabled compiler can be installed. | |||
2002-10-12 | Remove more '\n's from panic() statements. Both trailing and leading. | Kenneth R Westerback | |
Diff generated by Chris Kuethe. | |||
2002-09-17 | It turns out that disabling selection timeout is not a good idea, on | Miod Vallat | |
MVME177 at least. Restore previous behaviour. | |||
2002-08-21 | Get the boot device correctly if scsi id != 0 on 1[67]x boards. | Miod Vallat | |
2002-08-09 | Add an explicit dependancy of assym.h to Makefile. | Miod Vallat | |
This makes sure it will be regenerated if you run config(8) again. | |||
2002-07-20 | Instead of copying out the signal trampoline on top of the stack, create | Artur Grabowski | |
an uvm aobj, copy out the signal trampoline into it and share that page among all processes for the same emulation. This also requires us to actually be able to tell signal code where the trampoline is located, so introduce a new field in struct proc - p_sigcode that is a pointer to sigcode. This allows us to remove all the ugly calculations of the signal trampoline address done in every sendsig function in the tree (that's why so many files are changed). Tested by various people. ok deraadt@ | |||
2002-07-15 | repair tags building (due to obj dirs in /sys) | Michael Shalayeff | |
2002-07-10 | proper cdev_decl(ksyms), fix ksyms's broken functions | Michael Shalayeff | |
2002-07-10 | 'sez' is not an english word; ok deraadt@ | Jason Peel | |
2002-06-23 | uid_t is unsigned | Theo de Raadt | |