summaryrefslogtreecommitdiff
path: root/sys/arch/amiga
AgeCommit message (Collapse)Author
2000-11-10Change the ktrace interface functions from taking the trace vnode to taking theArtur Grabowski
traced proc. The vnode is in the proc and all functions need the proc.
2000-11-10seperate -> separate, okay aaron@Niels Provos
2000-11-08Enable UVM by default.Artur Grabowski
2000-11-08Some fixes to vmapbuf and vunmapbuf.Artur Grabowski
Mostly from NetBSD.
2000-11-08Fixes to submap allocation.Artur Grabowski
2000-10-18typo in comment; from gluk@ptci.ruMichael Shalayeff
2000-10-12Repair RAMDISK, which has no joystick.Marc Espie
Thanks jj for testing, and miod for explanations.
2000-09-26Implement getnulldev that returns the dev_t for "/dev/null".Artur Grabowski
2000-09-02Amiga joystick driver. Stylistic comments by Niklas.Marc Espie
Missing documentation yet.
2000-07-22art's typo, getting fed up of these.Marc Espie
2000-07-20Revert to old vm, now that it builds again.Marc Espie
UVM on amiga is definitely NOT READY for prime time yet.
2000-07-19Use t_rstrt_to for ttrstrt timeout.Artur Grabowski
2000-07-16Consistent COPTSMarc Espie
2000-07-16non-UVM doesn't even bootMarc Espie
2000-07-11since .cvsignore is there, .keep_me is not neededTheo de Raadt
2000-07-06Change splsoftclock() call to spllowersoftclock() to conform with otherHakan Olsson
code and keep old behaviour. (art@ ok)
2000-07-06Change splsoftclock() to raise the spl, instead of lowering it.Hakan Olsson
Add spllowersoftclock() for the former behaviour. Update comment. (art@ ok)
2000-06-23remove obsolete vtrace guts; art@Michael Shalayeff
2000-06-08Add explicit inclusions of signalvar.h to files actually using syms definedNiklas Hallqvist
there but relying on an indirect inclusion
2000-06-07At art@'s prompting, change amiga's loadbsd flag parsing to look moreMarc Espie
like other bsd loaders (defaults to -a -S).
2000-06-05Need to include files.mii due to latest elink3 changes.Artur Grabowski
2000-06-05Changes to exit handling.Artur Grabowski
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit where we're not allowed to sleep. From NetBSD
2000-05-30Oops. conversion braino.Artur Grabowski
Noted by miod@
2000-05-28Bugfix pmap_activate.Artur Grabowski
From NetBSD.
2000-05-28Disable cross for UVM until I figure out what the #$%&! is happening in here.Artur Grabowski
2000-05-28UVM. kmem_alloc -> uvm_km_zalloc. And one ugly construction -> uvm_km_valloc.Artur Grabowski
2000-05-28missing arguments and typos.Artur Grabowski
2000-05-27Fix a bunch of typos.Artur Grabowski
2000-05-27Even more name changes for UVM.Artur Grabowski
2000-05-27Need to include <vm/vm.h> for round_page.Artur Grabowski
2000-05-27UVM support.Artur Grabowski
Just some changes of function names. *yawn*
2000-05-27UVM support.Artur Grabowski
From NetBSD.
2000-05-27UVM support. (kernacc -> uvm_kernacc)Artur Grabowski
2000-05-27uvm support.Artur Grabowski
Buffer cache allocation code from NetBSD.
2000-05-27vm freelist defines for UVM.Artur Grabowski
From NetBSD.
2000-05-27Make pmap_activate take struct proc * as arguemnt.Artur Grabowski
From NetBSD.
2000-05-27Start of support for UVM. interrupt counters and kmem_free -> uvm_km_free.Artur Grabowski
2000-05-27Interrupt counter define for UVM.Artur Grabowski
2000-05-27Oops. This is also needed for MACHINE_NEW_NONCONTIG.Artur Grabowski
2000-05-27MACHINE_NEW_NONCONTIG code for amiga. Enabled by default.Artur Grabowski
Old contig and NONCONTIG code will no longer work.
2000-04-29From Lars Hecking <lhecking@nmrc.ucc.ie>:Marc Espie
grab NetBSD changes to recognize Linux ados labels, so that OpenBSD can mount them (provided it doesn't run into more endianness problems)
2000-04-28Nicer ite3 console.Marc Espie
- sanitize the RGB swapping code, - add limited color support, ala old vt220, - nicer color scheme (whitish text, white bold, blue italic, red cursor...)
2000-04-17Move some misplaced periods outside of the parentheses.Aaron Campbell
2000-04-12Remove all arguments to the .Os macro so that all of 2.7's man pages willAaron Campbell
correctly say "OpenBSD 2.7".
2000-04-12Fix pcic attachments; jj@dynarc.seAaron Campbell
2000-04-11Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.orgPaul Janzen
2000-03-23New API for timeouts. Replaces the old timeout()/untimeout() API andArtur Grabowski
makes it the callers responsibility to allocate resources for the timeouts. This is a KISS implementation and does _not_ solve the problems of slow handling of a large number of pending timeouts (this will be solved in future work) (although hardclock is now guarateed to take constant time for handling of timeouts). Old timeout() and untimeout() are implemented as wrappers around the new API and kept for compatibility. They will be removed as soon as all subsystems are converted to use the new API.
2000-02-29Enable the AriadneII driver + more of IDE stuffNiklas Hallqvist
2000-02-29This one is for jj: The AriadneII driver, adapted from Bernd Enesti'sNiklas Hallqvist
NetBSD driver
2000-02-22enlarge msgbuf, somewhat line netbsd didTheo de Raadt