summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
1999-10-26syncChris Cappuccio
1999-10-26add LMC1200Chris Cappuccio
1999-10-26modify bootapiver chekups to use bitwise operations.Michael Shalayeff
factor out /boot options parser from biosattach(). add logic to warn about ancient /boots. cleanup vanishing cruft. @niklas ok
1999-10-26Missed earlier: add PCI_HDRTYPE_TYPE macro, from NetBSD.Jason Downs
1999-10-26higher the kmem limit; fix up the nmbclustersMichael Shalayeff
1999-10-26Add puc devices.Jason Downs
1999-10-26Add puc devices.Jason Downs
1999-10-26Add com/pccom driver for puc.Jason Downs
1999-10-26PCI "universal" communication device driver, by cgd@netbsd.org.Jason Downs
1999-10-26Update my copyright.Jason Downs
1999-10-26This file has my code in it, attach my copyright.Jason Downs
1999-10-26Rename internal com_attach() routine.Jason Downs
1999-10-26syncJason Downs
1999-10-26Add puc device IDs.Jason Downs
1999-10-26Clean up function declarations.Jason Downs
1999-10-26Fix inline function decls to work with C++.Jason Downs
1999-10-26rewriting the header for packets originating from the bridge isJason Wright
unncessary since we check for incoming frames destined to any of the bridged interfaces. Also change the full mbuf copy to a referenced copy.
1999-10-25use bus_dma instead of [u]vm_page_alloc_contigJason Wright
1999-10-22fix some panic bugs; jasonTheo de Raadt
1999-10-20special character handling; aaronTheo de Raadt
1999-10-18force FDSCRIPTS after include files are pulled inTheo de Raadt
1999-10-16another fix form csapuntzTheo de Raadt
1999-10-16- Add support for a traditional PC display (16 colors and use the standard IBMAaron Campbell
font) and make it the default mode. This is more or less a hack, since pcvt was developed only to be a vt220 terminal emulator. - Document new default mode in pcvt(4). - Add -o option to scon(1) for toggling between the new and legacy modes.
1999-10-15Yet another unmount/kill race. (I hate this)Artur Grabowski
1999-10-14A fix for the dreaded isadmaattach panic. The reason was actually quiteNiklas Hallqvist
obscure, many, many thanks to art@ for finding my bug, which only hit people having about 2300-2500 pages in the buffercache.
1999-10-14tick tock the mii clock during the stats updateJason Wright
1999-10-14Fix for PR 871.cmetz
This fix is taken from BSD/OS (the file in question being BSD licensed). It continues to remove a datagram from a socket receive buffer even if there is an error on the copy-out, so as to leave the buffer in a reasonable state. Before, the kernel would stop in mid-receive if the copy-out failed, and the buffer's structural requirements would be violated (since the start of a datagram must be an address iff ). Note that if the user provides any invalid addresses as arguments to a recvmsg(), the datagram at the front of the buffer will be discarded. The more correct behavior would be not to remove this datagram if the arguments are invalid. Implementing this behavior requires a lot of significant changes, and socket receives are a critical path. Also included are two simple and fairly obvious fixes from the same source. If non-blocking I/O is set, it makes sure the receieve is non-blocking. It also fixes a slightly over-aggressive optimization.
1999-10-14read disklabels only from CDs that have a data track, spoofed labels fromTheo de Raadt
the audio CDs could do with a bit more work, but this makes audio cd playing not generate disklabel read-failure messages on first open; csapuntz
1999-10-14it now says 2.6 instead of 2.6-beta, but that does not mean that moreTheo de Raadt
2.6-related fixes won't go in
1999-10-13manually add IFM_AUTO (workaround for fxp)Jason Wright
1999-10-13Don't try to call VOP_SETATTR on a pipe. From <cky@pobox.com>Artur Grabowski
1999-10-12no media prints in mii codeTheo de Raadt
1999-10-12add iophy*Jason Wright
1999-10-12add driver for i82553; from netbsdJason Wright
1999-10-12syncJason Wright
1999-10-12add Intel i82553 and alternate oui/id for same; netbsdJason Wright
1999-10-11for AF_UNIX, do not follow symlinks when creating sockets, terminateTheo de Raadt
names more carefully; art
1999-10-11include exphy, really needed for xl 100mbit cardsTheo de Raadt
1999-10-11permit builds with NFSSERVER, without NFSCLIENT; cmetzTheo de Raadt
1999-10-10do this the right wayArtur Grabowski
1999-10-10Print out the irq in attach. Thanks downsj@cvsConstantine Sapuntzakis
1999-10-09give pmap_enter the right number of args.Bob Beck
1999-10-09Attach to the new 82559 ID number as well.Jason Downs
1999-10-09SyncJason Downs
1999-10-09Add the new 82559 ID number.Jason Downs
1999-10-09Fix printout at attach time. Print PIO/DMA mode information after havingConstantine Sapuntzakis
printed line with the name of hard disk.
1999-10-09wdc layer work:Constantine Sapuntzakis
Separate wdc_probe_caps into wdc_probe_caps and wdc_print_caps for more flexibility in printing capability information. Get rid of wdc_final_attach. Include name of device (e.g. cd0), if possible, on errors. atapiscsi layer work: Put a pointer to the SCSI device into ata_drive_datas' drv_softc field Simplify, simplify, simplify. Got rid of a bunch of fields in atapiscsi_softc Delay printing capabilities until we know the real device name (e.g. st0)
1999-10-07Add a delay() before turning the motor off; some controllers don't see itJason Downs
otherwise. Also move the motor off up so that it always gets performed, even if the probe is overridden via config flags.
1999-10-07Document ALT+F12, stress LEFT_SHIFT+PGUP/PGDN and point to machdep.kbdresetWim Vandeputte
1999-10-07Add -b (scrollback) to usage() -- OK aaron@Wim Vandeputte