summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
AgeCommit message (Collapse)Author
2001-04-30Fix the s-records encoding program so as to produce correct finalMiod Vallat
checksum if the chunk size is not 3 bytes. Update disillusionned comment accordingly. Ok deraadt@ [Note that the s-records files on the 2.9 cdroms have been corrected and are valid.]
2001-04-29Replace resource maps with extents, and cleanup associated variables.Miod Vallat
Idea from art's todolist, art@ ok.
2001-04-17Implement cnbell(), an optional entrypoint that rings the console bell; fromAaron Campbell
NetBSD. deraadt@ ok
2001-04-14Correctly initialize disklabel structure in readdisklabel().Miod Vallat
Prevents kernel from panic'ing or disklabel(1) from faulting with an empty (never labaled) disk. Also, use LABELSECTOR instead of hardwired constant. Tested by deraadt@ on mvme68k and myself on mvme88k, deraadt@ ok
2001-04-10This file is not welcomed here.Miod Vallat
2001-04-10Get rid of unnecessary symbols.Miod Vallat
2001-04-09FFS_SOFTUPDATES in sys/conf/GENERICTheo de Raadt
2001-03-27Move the boot loader relocation address higher, for full-featuredMiod Vallat
(GENERIC) kernel to fit. ``experienced by'' & ok smurph@
2001-03-27Make this compile correctly for non-mvme187 compatible kernelMiod Vallat
configurations.
2001-03-22Get pmap->cpus_using before the pmap structure is touched. Besides, weMiod Vallat
need to do this before playing with pmap_expand(). Solves a few more pmap data corruption problems.
2001-03-18Initialize all the cpu_sets array, not just the first max_cpus entries.Miod Vallat
This fixes the "ff1(users) == 21" panic when re-pmap_enter()ing the kernel_map, if option DIAGNOSTIC is set, and your kernel is configured for more cpus that you have on your board.
2001-03-18Remove badwordaddr() prototype, cleanup, #if -> #ifdef police.Miod Vallat
2001-03-18Correct prototype for guarded_access().Miod Vallat
2001-03-16Cleanup, get badwordaddr() from <machine/locore.h>Miod Vallat
2001-03-16Cleanup, fix some typos.Miod Vallat
2001-03-16Remove badwordaddr().Miod Vallat
2001-03-16More function prototypes.Miod Vallat
Move badwordaddr() to a macro.
2001-03-16Update the configuration procedure, to get in sync with other ports:Miod Vallat
- support any number of partition (not a power of two) - better computation of swap and dump devices
2001-03-16KNF, warning hunting.Miod Vallat
2001-03-15Be more cross-compiler friendly.Miod Vallat
Run mkdep on genassym.c.
2001-03-14typoTheo de Raadt
2001-03-12This file isn't used anymore.Miod Vallat
2001-03-12Simplify vmapbuf by moving the vm_map_pmap computation off loop (inspiredMiod Vallat
by similar code in the sparc port). Compile the diagnostic code in vmapbuf and vunmapbuf only if DIAGNOSTIC is defined.
2001-03-12Remove dead code related to soft interrupts.Miod Vallat
2001-03-12Remove dead code related to soft interrupts.Miod Vallat
While there, fix a typo in a panic message.
2001-03-12/dev/ksyms support.Miod Vallat
Replace netintr() with netisr_dispatch. Move the location of printf(version) so that it is saved in the message buffer.
2001-03-12/dev/ksyms support.Miod Vallat
Declare random source device - makes ssh work on mvme88k at last.
2001-03-12/dev/ksyms support.Miod Vallat
2001-03-09kernel will compile with -Werror. Added intr.hSteve Murphree
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-08move gif* and faith* into sys/conf/GENERIC. deraadt and angelos okJun-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-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-07Replace siop devices with ssh.Miod Vallat
Include ../../../conf/GENERIC in non-GENERIC configurations. Remove XT, which is no more different from GENERIC then.