summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Don't cross-reference VFS_START.9scottl2005-07-271-1/+0
|
* Now that VFS_START.9 has been removed, don't try to reference it from thescottl2005-07-271-1/+0
| | | | Makefile.
* Remove the VFS_START(9) manual page because it's no longer relevant. Thehmp2005-07-261-66/+0
| | | | | | entry point was removed as its only consumer was MFS. Approved by: re (hrs)
* Do not reference gifconfig, it is gone.trhodes2005-07-261-1/+1
| | | | Sponsored by: Chaffee::Interactive
* reflect scope change.ume2005-07-251-29/+152
| | | | Obtained from: KAME
* s/Lefler/Leffler/markus2005-07-231-1/+1
| | | | | Approved by: brueffer MFC after: 3 days
* Add delete-old and delete-old-libs targets:netchild2005-07-231-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - removes obsolete files/dirs or libraries. - works in interactive (default) and batch mode - respects DISTDIR - documented in UPDATING and build(7) The head of the file ObsoleteFiles.inc contains instructions how to add obsolete files/dirs/libs to the list. Obviously one should add obsolete files to this list, when he removes a file/dir/lib from the basesystem. Additionally add check-old target: - allows re@ to check if a file on the obsolete list resurfaces Design goals: - allows full control by the user (default interactive mode) - possibility of scripted removal of obsolete files (batch mode) - opt-in removal of files (explicit list of files) - seperate removal of libs (2 delete targets) Important design decissions: - structured list of files to remove instead of a plain text file: * allows to remove additional files if a NO_foo knob is specified without the need to change the targets (no NO_foo knob is respected yet) - not using mtree like NetBSD does: * mtree doesn't has an interactive mode Discussed on: arch (long ago), current (this year) Additional input from: re (hrs) Approved by: mentor (joerg)
* Fix two small grammar mistakes.rodrigc2005-07-221-2/+2
| | | | Approved by: das (mentor)
* - Reword a sentencemarkus2005-07-211-7/+7
| | | | | | | | - Grammar fixes - s/CAVEAT/CAVEATS/ Approved by: simon MFC after: 3 days
* Make the facility for recognizing BIOS-signatures more generalphk2005-07-211-1/+49
| | | | | | | | | | | | | | and return a printable representation. This fixes recognition of the PC Engines WRAP and improves the recognition of the Soekris boards (Bios version can now be seen in the dmesg output for instance). Also, add watchdog support for PCM-582x platforms. Submitted by: Adrian Steinmann <ast@marabu.ch> Slightly changed by: phk PR: 81360
* Fix example.phk2005-07-211-1/+1
| | | | Submitted by: "Andrew Smith" <ACSmith@csir.co.za>
* Add COMPATIBILITY and HISTORY sections. Fix an -mdoc error.jkoshy2005-07-211-0/+17
| | | | | | Cross-reference pmclog(3). Reviewed by: ru
* Break long lines and kill a few instances of EOL whitespace.trhodes2005-07-2161-89/+123
| | | | Noticed by: ru
* Document config-recursive target.jcamou2005-07-201-0/+5
| | | | | | | PR: docs/82586 Submitted by: Imobach González Sosa <imobachgs@banot.net> Approved by: trhodes (mentor) MFC after: 1 week
* Document passive cooling related sysctl MIB.ume2005-07-191-0/+7
|
* Add a "Load module on start up" comment, similar to mac_*.4 pages[1].trhodes2005-07-1961-107/+918
| | | | | | | | Quote .Cd and .Nd text. Bump doc date. Requested by: some user through ru Supported by: ru, dwmalone, brueffer
* s/then/thanschweikh2005-07-181-1/+1
|
* Regen:sheldonh2005-07-181-159/+324
| | | | | | | * Hart: rev 533 of pcidevs.txt (2005-06-29) * Boemler: vendors.txt (2005-07-12) Approved by: re (kensmith)
* Add LIBMEMSTAT tp bsd.libnames.mk.rwatson2005-07-171-0/+1
| | | | MFC after: 1 week
* snd_ess needs snd_sbc to compile.brueffer2005-07-161-1/+2
| | | | Noticed by: oliver
* Document IODATA USB-RSAQ3 USB-Serial Adapter as a supported device.hrs2005-07-161-1/+3
| | | | MFC after: 3 days
* Fix typos and use consistent section names in manual pages:hrs2005-07-1520-22/+22
| | | | | | | | | | s/SYSCTLS/SYSCTL VARIABLES/ s/TUNABLES/LOADER TUNABLES/ s/CAVEAT/CAVEATS/ s/DESCIPTION/DESCRIPTION/ Reviewed by: ru MFC after: 3 days
* Note non-support of modem side of DMF650TX cardimp2005-07-151-1/+6
|
* Mention the PC Card devices known to work with this driver, as wellimp2005-07-151-9/+25
| | | | as some of the bugs there with.
* kbdmux(4) keyboard multiplexer integrationemax2005-07-142-0/+52
| | | | | | | | | | | | | o Add minimal kbdmux(4) man page to the source tree (more details to follow); o Hook up kbdmux(4) to the build. This concludes the first part of the kbdmux(4) keyboard multiplexer integration. It now should be possible to use kbdmux(4), however one must configure kbdmux(4) by hand (i.e. load kbdmux(4) module and use kbdcontrol(1) to add/remove slave keyboards to/from kbdmux(4)). MFC after: 1 week
* - Remove MLINKS to nonexistant manpagesbrueffer2005-07-146-9/+10
| | | | | | | - Change some section numbers to match reality - For MLINKS to manpages from ports, mention which port installs them MFC after: 3 days
* Don't start a sentence with an identifier.yar2005-07-131-0/+3
| | | | | | Add missing cross-references to SEE ALSO. X-MFC after: 6.0-RELEASE (not a big deal to bother re@)
* Previously the bridge MTU was set to ETHERMTU and could not be changed. Sincethompsa2005-07-131-0/+3
| | | | | | | | | | | | | | we can only bridge interfaces with the same value it meant that all members had to be set at ETHERMTU as well. Allow the first member to be added to define the MTU for the bridge, the check still applies to all additional members. Print an informative message if the MTU is incorrect [1] Requested by: Niki Denev [1] Approved by: mlaier (mentor) MFC after: 3 days
* MLINK firewire.4 to ieee1394.4brueffer2005-07-131-0/+1
| | | | MFC after: 3 days
* Add a boatload of new device ids, gleaned from the pcmcia-cs-3.2.8imp2005-07-105-6/+51
| | | | | | | distribution. Add the appropriate devices to the man pages. Obtained from: pcmcia-cs Approved by: re (scottl)
* Add Farrallon EtherMac PC Card to the list of supported cards.imp2005-07-091-4/+11
| | | | | | | | | Fix XJack card description to reflect the actual model that we support (I've never seen a CC-10BT and I've been looking). List the specific chipsets supported. Bump date. Approved by: re (scottl, indirectly due to driver approval)
* document ENABLE_WPA_SUPPLICANT_EAPOLsam2005-07-082-1/+19
| | | | Approved by: re (scottl)
* ALTQify ste(4).mlaier2005-07-081-1/+2
| | | | | Requested and tested by: <nike_d at cytexbg dot com> Approved by: re (scottl)
* Remove obsoleted sysctl interface for switching between standard and 3Comglebius2005-07-051-10/+1
| | | | | | | | | | PPPoE modes. The interface was declared obsoleted before 5.3-RELEASE. When running as access concentrator ng_pppoe(4) supports both modes simultanously. When running as client mode can be swicthed in ppp(8) configuration. Approved by: re (scottl)
* Update for Bulletin C number 30:phk2005-07-051-20/+28
| | | | | | There will be a leapsecond at the end of 2005. Approved by: re@
* Add a missing ** to the 'command' command.dannyboy2005-07-021-1/+1
| | | | | | | | PR: 79877 Submitted by: Kazuaki Oda <ybbkaz@yahoo.co.jp> Reviewed by: ru Approved by: re MFC after: 1 day
* Remove the NQNFS paper.phk2005-07-013-2016/+0
| | | | | | | | We removed the corresponding code long time ago and the historically interested can find this paper in the cvs repo, there is no point in installing it any more. Approved by: re@
* Update the diagnostics section with all the messages from the driverimp2005-07-011-2/+35
| | | | | | as of this date. Bump the date as well. Approved by: re (scottl) blanket ep
* Use 'manual page' instead of 'man page' for consistency.hmp2005-06-308-12/+12
| | | | Approved by: re (hrs)
* Use 'manual page' instead of 'man page' for consistency.hmp2005-06-304-5/+5
| | | | Approved by: re (hrs)
* Fix markup, correct typos, improve grammar, move the BUGS section tojkoshy2005-06-301-144/+144
| | | | | | | the end of the manual page. Submitted by: ru Approved by: re (blanket hwpmc)
* Use 'manual page' instead of 'man page' for consistency.hmp2005-06-28141-144/+144
| | | | Approved by: re (hrs)
* Fix a type-o in a bridging example.thompsa2005-06-271-1/+1
| | | | | | Submitted by: Niki Denev Approved by: mlaier (mentor) Approved by: re (blanket)
* Overhaul the markup.ru2005-06-251-438/+559
| | | | | OK'ed by: imp Approved by: re (blanket)
* Document NetBSD 2.0.2.hrs2005-06-251-9/+10
| | | | | | Submitted by: SODA Noriyuki (soda at NetBSD dot org) PR: doc/82619 Approved by: re (implicitly)
* Document supported Sun hardware.ru2005-06-232-2/+6
| | | | | Submitted by: marius Approved by: re (blanket)
* Document a lot of sparc64 internals.ru2005-06-2215-18/+1561
| | | | | | | | Submitted by: marius Reviewed by: ru Approved by: re (blanket) X-MFC: not before the code in RELENG_5 matches these man pages or vice versa
* Correct spelling of options PMC_HOOKS to options HWPMC_HOOKS.rwatson2005-06-191-1/+1
| | | | Approved by: re (man page blanket)
* Remove the obsolete device count.brueffer2005-06-161-1/+1
| | | | | Approved by: re (blanket) MFC after: 3 days
* Markup fixes.ru2005-06-161-12/+9
| | | | Approved by: re (blanket)
OpenPOWER on IntegriCloud