summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2001-04-17Implement cnbell(), an optional entrypoint that rings the console bell; fromAaron Campbell
NetBSD. deraadt@ ok
2001-04-17Add commented out siop driver since it works. Enable after 2.9Nathan Binkert
2001-04-17Switch a "BGTR foo" to a "BLSS bar; BRW foo; bar:". In this case, theBrandon Creighton
difference between the BGTR and foo: is too large for a byte displacement. as should give an error or at least a warning here, but it doesn't; instead it merrily outputs a completely bogus displacement. This fixes problems with EMODD on numbers with negative exponents.
2001-04-16NOT GENERICTheo de Raadt
2001-04-16API_UP1000 support fitsTheo de Raadt
2001-04-16cleanTheo de Raadt
2001-04-15Prettier printing of cpu models and more models.Artur Grabowski
2001-04-15Err. a ramdisk without pseudo-device rd has a minimal chance of working.Artur Grabowski
2001-04-15oops, commit protosmjacob
2001-04-14cleanTheo de Raadt
2001-04-14Pick up some more NetBSD-isms (tsp_bus_mem_init2).mjacob
2001-04-14Pick up some more NetBSD-isms (init_mem2 stuff).mjacob
2001-04-14Always make sure that SQWE is enabled- the PROM may not have done this for you.mjacob
2001-04-14eephy was already in thereTheo de Raadt
2001-04-14need eephy with wx nowmjacob
2001-04-14Make sure eephy is included if you include wx.mjacob
2001-04-14UP1000 will fit in here.Artur Grabowski
2001-04-14Add support for Alpha Processor, Inc. UP1000.Artur Grabowski
From NetBSD.
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-13bmtphy does not work perfect yet, but put it in anywaysTheo de Raadt
2001-04-13silence printfs from media selection.Brad Smith
2001-04-13In cpu_fork, initialize the ipl of the new process toArtur Grabowski
run at IPL_0. From NetBSD.
2001-04-13bmtphyTheo de Raadt
2001-04-12Remove a bogus __attribute__ ((unused)) from _splraise.Artur Grabowski
2001-04-11include brgphyTheo de Raadt
2001-04-10Decrement open_count in netclose(); this fixes the bug which causedBrandon Creighton
boot to halt on boot attempts after a failed network boot attempt. Also, prototype netmountroot() and return 0 in netclose().
2001-04-10Fix for machines which need to enlarge the kernel address space, at leastNiklas Hallqvist
1GB i386 machines needs this. The fix is heavily based on Jason Thorpe's found in NetBSD. Here is his original commit message: Instead of checking vm_physmem[<physseg>].pgs to determine if uvm_page_init() has completed, add a boolean uvm.page_init_done, and test against that. Use this same boolean (rather than pmap_initialized) in pmap_growkernel() to determine if we are being called via uvm_page_init() to grow the kernel address space. This fixes a problem on some i386 configurations where pmap_init() itself was needing to have the kernel page table grown, and since pmap_initialized was not yet set to TRUE, pmap_growkernel() was choosing the wrong code path.
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-04-09Add softdep.Hugh Graham
2001-04-09Add emulation of Linux features to procfs; mostly from NetBSD. ok deraadt@Thorsten Lockert
2001-04-09further stripping downTheo de Raadt
2001-04-09To fit, fxp must go. SorryTheo de Raadt
2001-04-09A much tidier layout, from NetBSD.Hugh Graham
2001-04-09Amputate some dead and broken code and rework the rest to do theHugh Graham
right thing if booting off something other than sd0a. RB_ASKNAME will be reimplemented later.
2001-04-09Comment out compat vax1k until needed.Hugh Graham
Also a large quantity of whitespace fixes.
2001-04-08Update closer to current status of powerpc, remove items resolved orDale Rahn
mostly resolved.
2001-04-08Some cleanup to the mac audio driver, does not improve the interruptDale Rahn
storm much, but hopefully is in the right direction.
2001-04-08Attempt at tracking interrupt source better than "irqN", with thisDale Rahn
change, when the interrupt is established, the string will be changed from irqN to irqN/dvrname. Some drivers establish nice names, "usb0" some do not, "wdc_obio".
2001-04-07Additional console ioctl definitionsThorsten Lockert
2001-04-07Handle Linux Virtual Terminal ioctl calls with wscons as well as vt;Thorsten Lockert
requires WSDISPLAY_COMPAT_USL
2001-04-07OK, PMAP_NEW by default once again. This time it should work better forNiklas Hallqvist
userland since art removed the vm_pmap field that made UVM and old VM differ. An option PMAP_OLD is provided should someone need to configure with the old pmap. This is suspected to go away soon so I will not document it.
2001-04-06Use pool to allocate pmap instead of malloc. OK'd by art@Todd C. Miller
2001-04-06Get rid of vm_pmap.Artur Grabowski
beck@ ok.
2001-04-06Move offsetof define into sys/param.hConstantine Sapuntzakis
2001-04-05undo changes which did not even compileTheo de Raadt
2001-04-04Ansify source. Handles are now 16 bits.mjacob
2001-04-04Minor cleanup to minimize diffs with NetBSDConstantine Sapuntzakis
2001-04-03vm_map.pmap should always be used, not only for uvm.Artur Grabowski