summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
AgeCommit message (Collapse)Author
2003-06-06- section reorderJason McIntyre
- new sentence, new line - some macro fixes
2003-06-04mop up some more 3/4 license issuesTheo de Raadt
2003-06-04more term 3 & 4 from various developers, with permission of courseTheo de Raadt
2003-06-04more term 3 and 4 changesTheo de Raadt
2003-06-03terms 3 & 4 cleanup based on "terms" fileTheo de Raadt
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-06-02Relax licence by removing the 3rd clause on all files whereI was stillMiod Vallat
using a 3 clause licence.
2003-06-02snprintf here too.Miod Vallat
2003-06-02licence cleanupTheo de Raadt
2003-06-01strcpy/strcat/sprintf removal in all bootblocks. various testing byTheo 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-01Remove unused variable.Miod Vallat
2003-05-30Working process core dumps, borrowed from m68k code.Miod Vallat
2003-05-23remove old swapgeneric.c'sTed Unangst
2003-05-23move swapgeneric to truly generic code. tested on many archs by miod and ↵Ted Unangst
mickey.
2003-05-14add {b,c}devsw_lookup convenience functions.Ted Unangst
move chrtoblk and blktochr into MI code. tested on several archs and ok deraadt@
2003-05-13Add option NO_PROPOLICE, which explicitely disables the use of the propoliceMiod 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-13remove -fno-stack-protector (enable propolice)Ted Unangst
ok deraadt@
2003-05-11string cleaning; krw okTheo de Raadt
2003-05-08EXAMPLE -> EXAMPLES in .Sh section, as per mdoc template.Jason McIntyre
crunch stuff still needs a bit of work.
2003-04-16Clarify license terms.Miod Vallat
2003-04-10more POSIX chownTodd C. Miller
2003-04-06strcat/strcpy/sprintf cleanup. krw@, anil@ ok. art@ tested sparc64.Hakan Olsson
2003-04-06Some 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-06The disklabel fields d_packname and d_typename are not null terminated stringsKenneth 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-16Old unused stuff left under the carpet.Miod Vallat
2003-03-08more deletionsTheo de Raadt
2003-03-08bye bye, noted by davidTheo de Raadt
2003-03-06date should be written formally: .Dd Month day, yearDavid Krause
ok henning@ jmc@
2003-02-18copyrights added;Jason McIntyre
*installboot*: all Paul Kranenburg pppctl(8): Brian Somers rpc.bootparamd(8): public domain
2003-02-11be consistant on Hz vs hzMichael Shalayeff
2003-01-28pad < minimal length packets with 0's; based on netbsd; tested by miodJason Wright
2003-01-24Convert 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-24PMAP_{DE,}ACTIVATE are not used anymore.Miod Vallat
2003-01-14Define exception vector tables as assembly source, with the appropriateMiod Vallat
macros, rather than include files - no need to pollute <machine/> area...
2003-01-13Clean 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-13Missing splx()Miod Vallat
2003-01-09Remove fetch(9) and store(9) functions from the kernel, and replace the fewMiod Vallat
remaining instances of them with appropriate copy(9) usage. ok art@, tested on all arches unless my memory is non-ECC
2003-01-07Remove duplicate SRX definition.Miod Vallat
2003-01-04On MVME187, detect the on-board memory size by probing the memory controllersMiod Vallat
like on mvme68k, rather than attempting to find the first off-board memory location.
2003-01-04Fix a few pcctwo attachment addressesMiod Vallat
2003-01-04Don't define splassert goo if _LOCOREMiod Vallat
2003-01-04Correctly invoke pmap_enter() [fix last argument]Miod Vallat
2003-01-04A va_copy macro without drugs inside. Shupid miod.Miod Vallat
2003-01-03splassert support for m88kMiod Vallat
2003-01-03Provide a simple va_copy() implementation.Miod Vallat
2003-01-02Adapt to recent changes in libc/libc_r wrt weak symbols, so that programsMiod 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-01Fill cpu_model, so that sysctl hw.model produces something interesting.Miod Vallat
2002-12-25No need to define FOO?=foo for AS, CC, CPP and LD, as they are always alreadyMiod Vallat
set from <sys.mk>
2002-12-17Make 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-14handelr -> handlerFederico G. Schwindt