summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Document that net.inet.ip.fw.one_pass only affects dummynet(4).ru2000-09-291-1/+1
| | | | Noticed by: Peter Jeremy<peter.jeremy@alcatel.com.au>
* Bring this a bit more up to date.julian2000-09-291-97/+19
| | | | | | | | Remove the entire copy of ip_fw.h and just point readers at it as it gets out of date.. Add mentions of dummynet and the fwd actions. Still to do: Whoever did the 'stateful' stuff might mention it..
* Change paths, /modules -> /boot/kernel in FILES sectionmarko2000-09-291-4/+4
| | | | | PR: 21635 Submitted by: Mike Meyer <mwm@mired.org>
* Fixed broken path /etc/mailer.conf -> /etc/mail/mailer.confmarko2000-09-271-2/+3
| | | | | PR: 21586 Submitted by: tim@desert.net
* Huge improvement to the mutex man page.markm2000-09-251-9/+151
| | | | | | o Document all the mutex calls, not just the entry and exit. o Fix the mtx_t typedef (now is struct mtx).
* Remove references to the defunct kern.timecounter.method sysctl variable.markm2000-09-251-15/+1
|
* This is a very obsolete example file for wormcontrol, which is noasmodai2000-09-221-41/+0
| | | | | | | longer present in the tree. PR: 21005 Submitted by: Michael Harnois <mdharnois@home.com>
* Document 'libusb' option for .Lb macrophantom2000-09-221-0/+2
|
* Add ports-french.asami2000-09-223-0/+3
|
* Make some small line-break tweaks.wpaul2000-09-211-4/+4
| | | | Submitted by: Sheldon Hearn
* o Bring VOP_GETACL(9) and VOP_GETEXTATTR(9) man page "LOCKS" sections inrwatson2000-09-212-4/+2
| | | | | | | sync with the implementation. Vnode locks *are* required for these operations, as some underlying implementations will require them. Obtained from: TrustedBSD Project
* Add a new driver for the AMD PCnet/FAST, FAST+ and Home PCI adapters.wpaul2000-09-202-0/+160
| | | | | | | | | | | | | | Previously, these cards were supported by the lnc driver (and they still are, but the pcn driver will claim them first), which is fine except the lnc driver runs them in 16-bit LANCE compatibility mode. The pcn driver runs these chips in 32-bit mode and uses the RX alignment feature to achieve zero-copy receive. (Which puts it in the same class as the xl, fxp and tl chipsets.) This driver is also MI, so it will work on the x86 and alpha platforms. (The lnc driver is still needed to support non-PCI cards. At some point, I'll need to newbusify it so that it too will me MI.) The Am79c978 HomePNA adapter is also supported.
* Put temporary output in ${TMPDIR:-/tmp}brian2000-09-191-2/+1
| | | | | | If $<basedir>_output is not set, don't redirect output PR: 21395
* NGM_BPF_{G,S}ET_FILTER should be NGM_BPF_{G,S}ET_PROGRAM.archie2000-09-191-4/+4
|
* Added missing .It macrosmarko2000-09-181-2/+2
| | | | | PR: 21215 Submitted by: Osamu MIHARA
* Reference DRIVER_MODULE.9alex2000-09-171-1/+4
|
* Add DRIVER_MODULE.9, the manual page describing the kernel driveralex2000-09-172-1/+100
| | | | | | | declaration macro. Thanks to Sheldon for a big patch with language/mdoc fixes. Reviewed by: asmodai, sheldonh
* Added FreeBSD 4.1.1wosch2000-09-171-0/+3
|
* Give users a way to alter the sendmail (and related utilities) buildgshapiro2000-09-171-0/+15
| | | | environment so they can enable functionality such as SASL, LDAP, Hesiod.
* Comment out MTREE_FOLLOWS_SYMLINKS by default, since it picked before mtree isache2000-09-161-1/+1
| | | | | | builded (on the clean machine without /etc/make.conf) Submitted by: imp
* Add tr_TR timedefache2000-09-163-0/+207
| | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net.tr>
* Fix a cut&paste mistake.phk2000-09-161-1/+1
|
* Replace ${LIBMYTINFO} with warningache2000-09-161-2/+2
|
* Add/use MTREE_FOLLOWS_SYMLINKS make.conf optionache2000-09-151-0/+3
| | | | | | This is part of whole subsystem fixing Reviewed by: imp
* Another overhaul of the periodic stuff.brian2000-09-141-5/+77
| | | | | | | | | | | | | | | All periodic sub-scripts <larf> now have their return codes interpreted by periodic(8). Output may be masked based on variable values in periodic.conf. It's also now possible to email periodic output to arbitrary addresses, or to send it to a log file, examples of which can be found in newsyslog.conf. The upshot of it all should be no discernable changes to the default behaviour of periodic(8). PR: 21250
* Follow BSD/OS and NetBSD, keep the ip_id field in network order all the time.ru2000-09-141-13/+1
| | | | Requested by: wollman
* Fix small typo in sample code.julian2000-09-131-1/+1
| | | | Submitted by: Jean-Marc Zucconi <jmz@FreeBSD.org>
* Add kbdmap.5 to build.dwmalone2000-09-131-2/+2
| | | | | | | | Refer to kbdmap(5) from a few man pages. Remove it from TODO list. Add missing FreeBSD tags. PR: 19260
* Add scant documentation for msleep.jake2000-09-112-1/+20
|
* pmcd_value is actually a quad_t.dwmalone2000-09-101-1/+1
|
* Nuke RSAREF support from orbit.kris2000-09-101-1/+0
| | | | It's the only way to be sure.
* Major update to the way synchronization is done in the kernel. Highlightsjasone2000-09-072-2/+224
| | | | | | | | | | | | | | | include: * Mutual exclusion is used instead of spl*(). See mutex(9). (Note: The alpha port is still in transition and currently uses both.) * Per-CPU idle processes. * Interrupts are run in their own separate kernel threads and can be preempted (i386 only). Partially contributed by: BSDi (BSD/OS) Submissions by (at least): cp, dfr, dillon, grog, jake, jhb, sheldonh
* ``Anyone is now free to rub two primes together for their own gratification''kris2000-09-061-5/+1
| | | | | | | | | | -- Unknown Now that the RSA algorithm is released into the public domain, build librsaintl by default unless NO_RSAINTL is set in make.conf. The native OpenSSL implementation of RSA is much faster, doesn't have an artificial keysize limitation, has 30% fewer calories and tastes great!
* Add nsswitch support. By creating an /etc/nsswitch.conf file, you cannectar2000-09-069-688/+528
| | | | | | | | | | | | | | | | | | | | | | | | | | configure FreeBSD so that various databases such as passwd and group can be looked up using flat files, NIS, or Hesiod. = Hesiod has been added to libc (see hesiod(3)). = A library routine for parsing nsswitch.conf and invoking callback functions as specified has been added to libc (see nsdispatch(3)). = The following C library functions have been modified to use nsdispatch: . getgrent, getgrnam, getgrgid . getpwent, getpwnam, getpwuid . getusershell . getaddrinfo . gethostbyname, gethostbyname2, gethostbyaddr . getnetbyname, getnetbyaddr . getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr = host.conf has been removed from src/etc. rc.network has been modified to warn that host.conf is no longer used at boot time. In addition, if there is a host.conf but no nsswitch.conf, the latter is created at boot time from the former. Obtained from: NetBSD
* The kernel is now known as `kernel.ko' and it and its matching modulesobrien2000-09-061-7/+7
| | | | live in ``/boot/kernel/''.
* The kernel is now known as `kernel.ko' and it and its matching modulesobrien2000-09-051-2/+2
| | | | live in ``/boot/kernel/''.
* Good thing about these examples is that no one uses them, so they candcs2000-09-051-3/+3
| | | | | | | | | stay broken for months without anyone noticing. The boot-conf command was changed as to reproduce the behavior of builtin loader words precisely. As a result, it now always need an argument, possibly 0 indicating that no other arguments are being passed. This broke in a non-deterministic way (ie, it could go on working as if everything was fine).
* Added page http://perso.wanadoo.fr/levenez/unix/ to Bibliography.wosch2000-09-031-0/+3
| | | | | | This is the most comprehensive UNIX famility tree I know of. Submitted by: Poul-Henning Kamp <phk@critter.freebsd.dk>
* Added OpenBSD 2.7wosch2000-09-031-11/+12
|
* Added FreeBSD 3.5.1wosch2000-09-031-0/+6
|
* Move `NOPROFILE' and `NOPERL' to be with the reset of their "NO" brethren.obrien2000-09-021-6/+2
|
* Move the kernel's "cflags" to be next to the world ones.obrien2000-09-021-5/+5
|
* Add a missing article.sheldonh2000-09-011-1/+1
|
* `ip_id' now expected in host byte order when IP_HDRINCL is in use.ru2000-09-011-1/+13
|
* New netgraph node type for Ethernet bridging.archie2000-09-013-0/+201
|
* Add Turkish keyboardache2000-08-303-0/+132
| | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net.tr>
* Apply common line-breaking to the previous delta.sheldonh2000-08-301-4/+5
|
* Update the amr.4 manpage for changes in the driver.msmith2000-08-301-31/+36
|
* 8859-9 fontache2000-08-293-0/+99
| | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net.tr>
* Add iso08 fontsache2000-08-291-0/+1
|
OpenPOWER on IntegriCloud