summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2001-02-20for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okMichael Shalayeff
2001-02-20Adhere to VM/UVM pager requirements, do not unmap pager mappings.Dale Rahn
recognize pager_sva/pager_eva. Does not seem to change anything under UVM but is recommended, may have been the cause for the "pmap" bug under VM. Test compiled for VM, but not run. Ok'd by art.
2001-02-20Indicate that wdc is capable of UDMA, print device mode using MIDale Rahn
wdc_print_current_modes function.
2001-02-20Add edge/level sense detection capability to the interrupt controller,Dale Rahn
changes from NetBSD, been in my tree for a while.
2001-02-20Make drivers more quiet, no point in printing useless information.Dale Rahn
2001-02-20add uftdiNathan Binkert
2001-02-19Zap some unnecessary defines.Artur Grabowski
2001-02-19explicitly set page size for uvm.Artur Grabowski
2001-02-19Avoid losing rtc after suspend/resume on some laptops. Ok provos@Hakan Olsson
2001-02-19Merge from GENERIC: add pseudo-devices for IPv6.Christian Weisgerber
2001-02-18two siop drivers conflict. rename to ssh -- short for Symbios Scripts HardwareTheo de Raadt
2001-02-18USBVERBOSETheo de Raadt
2001-02-16db_elf definitionsMichael Shalayeff
2001-02-16import some alphaizm for the db_elf's sakeMichael Shalayeff
2001-02-16Finish merging lca to become closer to current netbsd.Jason Wright
2001-02-16zap old timeoutMarc Espie
2001-02-16Further sync... get pci_swiz_bus_{io|mem}_chipdep.c via <> instead of ""Jason Wright
like everyone else.
2001-02-16Bring apecs closer to current netbsd work (updated copyrights, plusJason Wright
a few bug fixes I missed earlier).
2001-02-16For powerpc use siop driver instead of ncr, now that siop issue on powerpcDale Rahn
has been resolved.
2001-02-16Engage UVM for powerpc. It is now running fairly well (better than non UVM)Dale Rahn
on my machines as well as on brad's. This change also eliminates the need for the ld.so hack for powerpc.
2001-02-16Allow siop driver to work on powerpc.Dale Rahn
pmap_extract should work for all accessable memory. Since powerpc maps the kernel va=pa without using the pte table, these addresses need to be handled seperately.
2001-02-16bring in netbsd bus_dma stuff for lca and apecs bussesJason Wright
2001-02-15Add iha (Initio SCSI)Kenneth R Westerback
2001-02-15Pick up a two liner from netbsd to set offset for SCSI chain B properly.Hugh Graham
2001-02-15Change i386 LSI/Symbios/NCR 53c8xx driver to siopKenneth R Westerback
2001-02-15approaching UVM support for powerpc, initialize all of the bufferDale Rahn
entries, not just the first entry of each buffer.
2001-02-14Theo keeps remembering me things I forgotten. Add pcscp(4) here as well.Federico G. Schwindt
2001-02-14Add pcscp(4) per theo request.Federico G. Schwindt
2001-02-14Add pcscp support.Federico G. Schwindt
2001-02-13grr, pcvt ioctl support still requiredTheo de Raadt
2001-02-13rtc stops if we miss interrupts. Inspired by code from FreeBSD.Hakan Olsson
Some KNF. (niklas@ ok)
2001-02-13Bump maxusers to 32.Artur Grabowski
2001-02-13Cleanup.Artur Grabowski
2001-02-13default more wscons optionsTheo de Raadt
2001-02-13remove a file that should have been gone long ago.Eric Jackson
moved to dev/pci/tgareg.h
2001-02-12set default adapter role, propage config flagsmjacob
2001-02-12Remove duplicate definition of badaddr.Artur Grabowski
2001-02-12correct buginstat(), statclock now working for '188, systat vmstat now works,Steve Murphree
serial driver for '188 working better.
2001-02-12One more step to UVM. It is necessary to map the I/O buffers, using uvm or vm.Dale Rahn
These changes taken from alpha/i386 combination.
2001-02-11Previously, when sendsig() set up the current process's context to runBrandon Creighton
sigcode to call a handler, SP was set in the middle of the struct trapframe/struct sigcontext pair placed on the stack. This was adequate when only one signal is being delivered at a time, but when two signals are delivered in one syscall, the second invocation of sendsig() overwrote some of the first sendsig() invocation's stack data. The result was that under certain circumstances, (e.g., sending signals to backgrounded processes from ksh) the argument passed to signal handlers when the second signal (the one corresponding to the first sendsig() invocation) was delivered was bogus data from the stack. Therefore, programs that depended on the "sigraised" argument to be accurate blew up. This fix ensures that sendsig() always leaves a process's SP out of the way of structures that will be used. AP is not moved, though, so sigreturn can find the args correctly. Also, sigcode is changed to compensate for the SP change.
2001-02-11Pick up a NetBSD hack to attach Cheetah to vsbus as well as ibus.Hugh Graham
High kludge factor, but the payoff is vsbus scsi for free. Most of the work is by Michael Kukat and ragge, with a few other synchronisations thrown in.
2001-02-09BOOT_CONFIG is already in conf/GENERIC and this includes it.Artur Grabowski
2001-02-09Add support for loading the bootloader and kernel from an HFS filesystem,Dale Rahn
using firmware. Mostly from NetBSD. This allows kernels to be booted directly from an HFS hard drive. (the rest of the files...)
2001-02-09Add support for loading the bootloader and kernel from an HFS filesystem,Dale Rahn
using firmware. Mostly from NetBSD. This allows kernels to be booted directly from an HFS hard drive.
2001-02-08Actually give esym some storage. As it was, esym pointedArtur Grabowski
into the memory of some other variable. How did this ever work? (well, the floppies didn't work, but they should now).
2001-02-08kvtop() returns pa, not vaMichael Shalayeff
2001-02-07We need to loose some weight.Artur Grabowski
If someone feels very opposed to this, the code is left in the Attic. Just revive and _make_it_work_.
2001-02-07XXX two horrible abuses of spl.Artur Grabowski
2001-02-07Now that niklas has fixed ddb to not barf on elf symbols, thereArtur Grabowski
is no need to disable ddb.
2001-02-07Add support for bus_space_write_region_[1248] bus_space_read_region_[1248]Dale Rahn
as needed for some drivers, primarily drivers from NetBSD, where these defines came from.