summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-03-06version 1.2.3Theo de Raadt
2000-03-06fix pr 1113, fclose() -> pclose(), todo: remote popen()Markus Friedl
2000-03-06syncTheo de Raadt
2000-03-06do signed hex instead of %DMichael Shalayeff
2000-03-06- ``Option:'' -> ``The options are as follows:''Aaron Campbell
- Correct some mdoc usage. - Nicer ENVIRONMENT section.
2000-03-06Correct SYNOPSIS (rev(1) accepts more than one file argument); from FreeBSD.Aaron Campbell
2000-03-06Covert to mdoc; from FreeBSD, with some modifications by me.Aaron Campbell
2000-03-06Some section re-ordering.Aaron Campbell
2000-03-06Add HISTORY sections; from FreeBSD.Aaron Campbell
2000-03-06oopsMichael Shalayeff
2000-03-06mdoc'ify; from FreeBSD, with many modifications by me.Aaron Campbell
2000-03-06do not save/restore callee-save regs on trap, except for DDBMichael Shalayeff
2000-03-05Don't issue an initial SCSI bus reset for Ultra3 cards. What seems tomjacob
happen is that the SCSI bus reset, even after several seconds delay, seems to cause the Qlogic to then destroy several subsequent commands (which, ha ha, happen during probing for devices). I dunno why this is- some Qlogic f/w problem that we need to step around.
2000-03-05roll minor revision levelmjacob
2000-03-05Clean up some error messages so that the channel source is printed. Don'tmjacob
wipe out the whole marker flag when a bus event happens on one channel- just or in the channel that needs to have a marker sent. Correctly mark a PORT CHANGED error with a 'selection timeout'.
2000-03-05regenMichael Shalayeff
2000-03-05add toshiba pci-isa bridge; from aaron@Michael Shalayeff
2000-03-05Remove hard sentence breaks.Aaron Campbell
2000-03-05fix size check case for getgroups; pbucich@sion.comTheo de Raadt
2000-03-05Various improvements, including a few HISTORY sections added from FreeBSD.Aaron Campbell
2000-03-05Change prompt string from "Location:" to "Office Location:", to disambiguateAaron Campbell
from what is expected, and to be consistent with finger(1); from FreeBSD.
2000-03-05export bios_pciinfo for the whole _KERNEL, there will be more files to use itMichael Shalayeff
2000-03-05D not forget our memmap changes, ok mickey@Niklas Hallqvist
2000-03-05Adda a stripcom function to strip comments (and leading whitespace,Todd C. Miller
depending on IFS). This replaces the ed and sed code previously used to do this.
2000-03-05Finish standardizing options list introduction.Aaron Campbell
2000-03-04In Unix land we prefer "whitespace" to "white space" or "white-space". AtAaron Campbell
least, this is the impression I get from looking at a lot of Perl docs.
2000-03-04Point out that dmesg is most commonly used to review system startup msgs.Aaron Campbell
2000-03-04Many improvements and general cleanup/standardization.Aaron Campbell
2000-03-04Add EXAMPLES section, with OPENBSD printed in lights.Aaron Campbell
2000-03-04mdoc'ifyAaron Campbell
2000-03-04Try to standardize the options list introduction; it should read "The optionsAaron Campbell
are as follows:", except in special cases.
2000-03-04syncTheo de Raadt
2000-03-04amd devices; dave@dtsp.co.nzTheo de Raadt
2000-03-04TypoLouis Bertrand
2000-03-04Clearer note about the daily security report.Louis Bertrand
2000-03-04Make P_tmpdir point to /tmp/ not /var/tmpTodd C. Miller
Really, there should be a way to make configurable by the admin at runtime (say, a gettmpdir() function).
2000-03-04Remove unnecessary, unreached, confusing code.Artur Grabowski
2000-03-04Cut the number of dependencies to reduce problems on low-memory machines.Artur Grabowski
2000-03-04Improve.Aaron Campbell
2000-03-04Use .Va for errno.Aaron Campbell
2000-03-04Various cleanups and mdoc'ing.Aaron Campbell
2000-03-04Change invalid 'CHAT' loglevel to 'VERBOSE'Damien Miller
2000-03-04to be Posix.1g compliant, fix ancillary message alignment. it will now beJun-ichiro itojun Hagino
aligned to ALIGNBYTES (arch dependent). NOTE: the change requires you to recompile IPv6 userland, if you are on arch that is ALIGNBYTES != sizeof(long) - 1 (sparc seems to be it). sorry for the mess.
2000-03-04Refresh the NAT IP pointer after a potential mbuf reallocation. Thisbrian
caused frequent lock-ups for individual sessions over a NAT'd ppp link when MTU sizes ended up more or less exactly wrong.
2000-03-04handle corrupt inetd.conf files better; sdb@ssr.comTheo de Raadt
2000-03-03Fix some printf-type argument bugsbrian
2000-03-03Reverse rutgers change (attachtoparent vs. spawncli)Todd C. Miller
New ttreinit function that enters application mode, enables the keypad and resets the tty size. New spawn module that calls tttidy() to exit application mode (and cleanup) then calls ttreinit() after resume to get back into application mode. Assumes we have job control. This takes advantage of the xterm 'alternate screen'.
2000-03-03syncTheo de Raadt
2000-03-03If we attempted reschedule two times without suceeding, uiomove will yield,Artur Grabowski
giving other processes a chance to run. A process feeding a huge buffer to {read,write}{,v} on a file that doesn't need to wait for I/O, could have hogged a lot of cpu in the kernel, blocking all userland activity. Based on a similiar fix in FreeBSD.
2000-03-03Keep track of the number of times we trigger a reschedule before theArtur Grabowski
context switch actually happens.