summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-10-26Enable sun3 md manpagesMiod Vallat
2000-10-26shadow the dmaier to avoid an additional pci read in the interrupt pathJason Wright
if mastering isn't enabled, scream document netsec rev A workaround
2000-10-26Some share/man fleshing.Aaron Campbell
2000-10-26delete absolutely ridiculous crapTheo de Raadt
2000-10-25various savecore/kvm fixes; gluk@ptci.ru, PR#1461Theo de Raadt
2000-10-25Do not null deref in the IPSEC+PMTU case; provos@ ok. Thanks toAaron Campbell
andrews@crt.se for testing.
2000-10-25silence the "no multicast" warning for IFT_ENC, tooJason Wright
deraadt ok
2000-10-25mark swap16() and swap32() with __extension__; guenther@gac.eduTheo de Raadt
2000-10-25put back using bios_pciinfo, we will rework it later onMichael Shalayeff
2000-10-25typo; deraadt okJason Wright
2000-10-25some people may say that i suckMichael Shalayeff
2000-10-25add pciprobe back into /boot.Michael Shalayeff
it appears there are machines only equipped w/ real-mode pci bios. int time, we will benefit from this the other way around, -- we'll elliminate pci bios _calls_ in kernel instead.
2000-10-25Wrap PCVT mouse operations in spltty(); deraadt@ okAaron Campbell
2000-10-25i386's interrupt counters are u_long, adjust printf formats.Michael Shalayeff
use err/errx instead of fprintf+exit. deraadt@ ok
2000-10-25DBM_READONLY -> DBM_RDONLY; dugsong@Aaron Campbell
2000-10-25In stty line enable ^T (status) as well.Todd C. Miller
2000-10-25Don't incorrectly document splserial() as spltty().Aaron Campbell
2000-10-25Clarify; gluk@ptci.ruAaron Campbell
2000-10-25Various fixes; from gluk@ptci.ruAaron Campbell
2000-10-25Add shared library awareness to powerpc gdb. Uses the "standard" SVR4 solibDale Rahn
support. Ok'ed by espie and deraadt.
2000-10-24When calling setupterm() pass in an int* for the error code soTodd C. Miller
it doesn't spew to stderr if the terminal type can't be found. Fix a logic thinko wrt terminaltypeok() -- it should return 0 on failure, not success.
2000-10-24Add the punchline to the procedure for making web server certificatesBob Beck
to indicate that people should test their server with a self signed certificate, then simply replace the certificate with a real one to go production.
2000-10-24Duh, C_WAIT will always be set if the card is inactive, but that interruptJason Wright
isn't always enabled. (CSR & IER) == 0, means not to claim the intr. deraadt ok
2000-10-24typoNiels Provos
2000-10-24Fix example for ipsec bridge to use fxp1 throughout like it saysBob Beck
it does, instead of switching to fxp0. - spotted and reported by Lars Josephson <hunter@dina.kvl.dk>.
2000-10-24syncTheo de Raadt
2000-10-24syncTheo de Raadt
2000-10-24RCS tag didn't stick on unimpl_emul.s, perhaps due to funky netbsd tagHugh Graham
underneath, so fix up netbsd tag and try again. Also tag files.vax.
2000-10-24Crank major because the type of the "ospeed" variable changed fromTodd C. Miller
speed_t (u_int) to short to match historic termcap usage.
2000-10-24Verify that memory regions are always page aligned and multiple of page size.Dale Rahn
The kernel does not want to deal with memory that is not page aligned.
2000-10-24Code to emulate instructions trapped by a privinflt.Hugh Graham
Currently only one instruction emulated (mostly): polyd Obtained from: NetBSD; Cleared with Theo.
2000-10-23Remove duplicate (and wrong) description of @option.Marc Espie
ok aaron@
2000-10-23unreset takes time too, and you notice this on a p3/933Theo de Raadt
2000-10-23ok, i think all i82802-using host bridges are in here nowTheo de Raadt
2000-10-23syncTheo de Raadt
2000-10-23full line of i815 devicesTheo de Raadt
2000-10-23non-alignment dependent swap_bytes(); from simonb@wasabisystems.com/netbsdMarkus Friedl
2000-10-23Clarifications for some Canadian provinces.Aaron Campbell
2000-10-23fix a few signed/unsigned/long printf formats; millert@ & deraadt@ okMichael Shalayeff
2000-10-23Document that the string returned by strerror(3) contains a maximum ofAaron Campbell
NL_TEXTMAX characters.
2000-10-23KbitTheo de Raadt
2000-10-23more verbose descriptionTheo de Raadt
2000-10-23i820 also does rng; art testedTheo de Raadt
2000-10-23Format string paranoia w/use of bootpd's local stdarg report() routine.Aaron Campbell
2000-10-23Call get_errmsg() properly; from NetBSD.Aaron Campbell
2000-10-23Spelling: wierd -> weirdAaron Campbell
2000-10-23Use the standard option descriptions introduction.Aaron Campbell
2000-10-23more pchb that supply randomTheo de Raadt
2000-10-23Format string paranoia; deraadt@ okAaron Campbell
2000-10-22Use clearerr(3) to clear EOF on stdin when aborting a command due to ^D.Todd C. Miller
Fixes a bug exposed by the last revision (we got away with before it due to the rewind(3) calls).