summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-06-27forward declaration of struct timespec to avoid warningArtur Grabowski
2000-06-27Slight optimization of wakeup.Artur Grabowski
2000-06-27TyopArtur Grabowski
2000-06-27syncTheo de Raadt
2000-06-27initialize result. this fixes the recent problem that makes ftp coredumpFederico G. Schwindt
if epsv4 is disabled. problem reported by price@netdoor.com on misc.
2000-06-26fix pasto; noted by artHugh Graham
2000-06-26timeout is in seconds, not ticks.Artur Grabowski
2000-06-26New timeouts.Artur Grabowski
2000-06-26Instead of using an ugly hack with timeouts to wake up the processArtur Grabowski
waiting for resources, use the built-in facilities in tsleep.
2000-06-26Convert nfs_timer to new timeouts.Artur Grabowski
2000-06-26Make the check for !usermode in syscal a DIAGNOSTIC.Artur Grabowski
2000-06-26Make the definition of tcpstat in tcp_var.h extern.Artur Grabowski
2000-06-26Convert to new timeouts.Artur Grabowski
2000-06-26MaxStartups: limit number of unauthenticated connections, work by theo and meMarkus Friedl
2000-06-26talk about legacy data and swap encryption as suggested by theoNiels Provos
2000-06-26let svnd deal with sparse files, okay art@ deraadt@Niels Provos
2000-06-26various additions and cleanups written in denver airportTheo de Raadt
2000-06-26Document OPTi and CMD supportChris Cappuccio
2000-06-26interface can be faked for cmd chipsChris Cappuccio
2000-06-26from NetBSDChris Cappuccio
support CMD 648/649 UDMA66 controllers fix promise UDMA66 cable check
2000-06-26use new timeoutsArtur Grabowski
2000-06-26Use new timeouts.Artur Grabowski
2000-06-26Update to ncurses 2000/6/10 version:Todd C. Miller
* add bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig) * correct spelling error in entry name: bq300-rv was given as bg300-rv in esr's version. * add cud, ech, etc., to beterm based on feedback from Rico Tudor -TD * correct color definition for ibm3164, make minor changes to other IBM terminal definitions based on recent terminfo descriptions -TD * add mgterm, from NetBSD -TD * add alias sun-cgsix for sun-ss5 as per NetBSD * change cons25w to use rs2 for reset rather than rs1 -TD * add rc/sc to aixterm based on manpage -TD * remove ncv from xterm-16color, xterm-256 color * add kmous capability to linux to use Joerg Schoen's gpm patch.
2000-06-26alpha was missing memsetTodd C. Miller
2000-06-26cleanup, less cut&pasteMarkus Friedl
2000-06-26Make the Linksys Combo PCMCIA EthernetCard (EC2T) work again; it was broken byAaron Campbell
the last commit for AX88190 support. There are at least three variants of ne's that have manufacturer id 0x143 (Linksys) + product id 0xc1ab. Each one has its enaddr in a different place. The matching code for PCMCIA NE2000 is really gross. In particular, the flags field in ne2000_devs (for NE2000DVF_DL10019 and NE2000_AX88190) is a complete hack. The driver should really try each method of reading the Ethernet address (from the ROM, DL10019, and AX88190) and choose the one that generates the correct checksum. I plan to fix this later...
2000-06-26syncAaron Campbell
2000-06-26Add a PCMCIA_CIS entry for the Linksys Combo PCMCIA EthernetCard EC2T.Aaron Campbell
2000-06-26use basename(1) in examplesPaul Janzen
2000-06-25Cater to people who don't run make depend better.Marc Espie
Also forgot a few CLEANFILES.
2000-06-25correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>Niels Provos
2000-06-25explain about crash dumps and swap encryptionNiels Provos
2000-06-25disable automatic crashdump when swap encryption is onNiels Provos
2000-06-25Fix typo; ds@ds.primasoft.bgAaron Campbell
2000-06-25increase flexibility of distribution-etc-root-var:Christian Weisgerber
- NOMAKEDEV to optionally skip making devices - allow building aliases.db under /var/tmp will come in handy with mergemaster; ok millert@
2000-06-25allow 'fmt -w width' and 'fmt -width'.Paul Janzen
ok millert@
2000-06-25correct return valuesPaul Janzen
2000-06-25comma splicePaul Janzen
2000-06-25vnd needs blowfish. Ok provos@Marc Espie
2000-06-25safe shell quotingDug Song
2000-06-25pass variables to dhclient-script via a constructed environment, instead of ↵Dug Song
a temporary shell script
2000-06-24Don't assign an MTU based on the peers first-link MRU in MP mode.brian
Use the peers MRRU as we're supposed to.
2000-06-24syncFederico G. Schwindt
2000-06-24Implement getdents64, lstat64 and stat64, basically the same functions ofFederico G. Schwindt
the existing ones using 64bit vars. This makes netscape-solaris works on sparc. Particular note to those who want to try netscape: - netscape 4.73 was used for testing on a ss5 with -current. - apparently solaris uses pipes for communicating with the X server. I've checked the libraries I've installed from a solaris 2.6 box, and although there are references to X11-unix, it fails when it tries to open X11-pipe/X0, so in order to test it you need to specify -display <box ip>:0 or it won't start. - i got some errors when starting, but besides that, it works fine. - it's not slow, but you better have all the requiered files in the correct paths, or it'll take some time to start.
2000-06-24Do not start snmpd by default just because it is installed. ok theo@.Jakob Schlyter
2000-06-23link instbin w/ scrt0, saves a couple of k'sMichael Shalayeff
2000-06-23implement bubble sort in ksh instead of using sort(1).Michael Shalayeff
i think i'll fix sparc next week to use it.
2000-06-23set mp->keyfile = NULL if stat failsMarkus Friedl
2000-06-23Get rid of repeating error messages; From netbsd millert@ okEric Jackson
2000-06-23Implement PCMCIA event polling. This will either complement interrupt-drivenAaron Campbell
event notification from the pcic (if an interrupt is available) or allow the insertion and removal of PCMCIA devices even if there is no IRQ for the pcic. Each socket is checked for status change every 0.5 seconds using art's timeout code. Insertion and removal events should no longer ever go unnoticed.