summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-07-07typoMichael Shalayeff
1999-07-07moreTheo de Raadt
1999-07-07I don't see how revoke can return EINVAL.Artur Grabowski
1999-07-07syncTheo de Raadt
1999-07-07correctTheo de Raadt
1999-07-07revoke(2) works on more than just char and block devicesArtur Grabowski
1999-07-07Add IPSec Sysctl info. ok angelos@.Kjell Wooding
1999-07-07use DvAaron Campbell
1999-07-07when using `-' as a negative sign, escape it with a backslash so troff knowsAaron Campbell
it's not supposed to be a hyphen/dash
1999-07-07some formatting fixesAaron Campbell
1999-07-07capitalize .Dt argumentAaron Campbell
1999-07-07The proper order of the ``introductory'' macros in a man page is .Dd/.Dt/.Os.Aaron Campbell
Out of the approximately 1450 man pages, only about 90 of them were wrong. Thanks to kwesterback@home.com for coming up with a script and patch to repair this. The patch also inserted a .Os macro in the few man pages that were missing one.
1999-07-07Attempt to make photurisd limitations clearer.Kjell Wooding
1999-07-07show MESSAGE using PAGERMarc Espie
1999-07-07First REAL cut at documenting bimap.Kjell Wooding
1999-07-07Add the ipsec sysctl information.Kjell Wooding
1999-07-06document TCP_SIGNATURE; cmetz@Aaron Campbell
1999-07-06syncTheo de Raadt
1999-07-06more...Theo de Raadt
1999-07-06ipsec_in_use could get out of sync. (Also niklas@. angelos@ ok)Hakan Olsson
1999-07-06Added TCP_SIGNATURE option.cmetz
1999-07-06Added support for TCP MD5 option (RFC 2385).cmetz
1999-07-06Fixed compilation problems when INET6 is enabled.cmetz
1999-07-06doc isapnp betterTheo de Raadt
1999-07-06isapnpTheo de Raadt
1999-07-06Whoops. Missed man page. removed -UKjell Wooding
1999-07-06Option -U is solaris only. Pointed out by theo.Kjell Wooding
1999-07-06these can also return ENFILETheo de Raadt
1999-07-06Removed bogus ifdef/define lines that resulted from an over-aggressive M-x.cmetz
1999-07-06use NFSSERVER || NFSCLIENT instead of NFSTheo de Raadt
1999-07-06-w writes files to the standard output, not standard input; d@Aaron Campbell
1999-07-06union wait -> intTodd C. Miller
wait3 -> waitpid (for portability)
1999-07-06Update to reflect reality.Jason Downs
1999-07-06delete meaningless entry in BUGSTheo de Raadt
1999-07-06syncTheo de Raadt
1999-07-06document machdep.kbdresetTheo de Raadt
1999-07-06for CTRL-ALT-DEL, send SIGUSR1 to initprocTheo de Raadt
1999-07-06your basic rc.shutdown fileTheo de Raadt
1999-07-06if SIGUSR1 is received, kill gettys, run /etc/rc.shutdown, and halt the machineTheo de Raadt
1999-07-06first cut at documenting bimapTheo de Raadt
1999-07-06gethostname() is safeTheo de Raadt
1999-07-06syncTheo de Raadt
1999-07-06fix conflict between mdoc(7) and mdoc.samples(7): the proper order for theAaron Campbell
introductory macros is .Dd/.Dt/.Os, not .Dd/.Os/.Dt (based on the fact over 90% of the man pages use the former)
1999-07-05but make it work for multiple cards... i thinkTheo de Raadt
1999-07-05calculate ca_offset correctlyTheo de Raadt
1999-07-05header file changes for recent powerpc changes.Dale S. Rahn
1999-07-05Several changes here:Dale S. Rahn
(Some of these changes are work in progress and may change more later) locore.S: rearranged to remove most of the direct openfirmware references in the attempt to move all of the openfirmware pieces into ofw_ files. This could allow other firmware type to be supported easier. Also this keeps the openfirmware code grouped in the same files. OF_buf is now statically allocated in the data/bss section instead of allocated during initialization. machdep.c: change the order of vm initialization, Still considering removing the BATs from use. instead of calls directly to ppc_exit and ppc_boot these are now called via a firmware function pointer structure. Add iMac recognition to systems ofw_machdep.c: function pointer structure to allow different firmware to supply specific system functionality, normally startup and reset, including a hook to notify when bsd is about to go virtual, in case firmware calls need to act different after that time. Allow BSD to handle the virtual memory operations for openfirmware. this idea was copied from NetBSD macppc, It is not fully implemented, among other problems, openfirmware does not have a mechanism to add new mappings. ofwreal.S: Major rewrite of the firmware call code, It still copies a portion of the stack, but now does not restore exeception vectors. Modified to be similar in idea to NetBSD macppc with BSD handling the openfirmware VM faults/TLB misses. This still needs to be reviewed, Should be possible to not require any stack copy. opendev.c: OF_bus is not a pointer to the buffer, but is the buffer itself now. openfirm.c: OF_bus is not a pointer to the buffer, but is the buffer itself now. Dont panic if OF_boot fails, OF_boot can be called by panic. instead print and the hang in a spin loop. pmap.c: call the firmware function to get memory regions. Scale the PowerPC hash table size by size of real memory. Properly align the hash table based on the start, not just the size.
1999-07-05move some code under ifdef DDB, it uses a db_ function during the call.Dale S. Rahn
It is a debugging operation anyway.
1999-07-05Fix backtraces from ddb for powerpc, If addr is not specified, it willDale S. Rahn
start using the ddb_regs. If the address is specififed, start from the address.
1999-07-05Use a breakpoint to cause an exception to cause the registers to beDale S. Rahn
saved for debugging purposes.