summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Reference kldfind(2), kldfirstmod(2), kldload(2), kldnext(2), kldstat(2),ghelmer1999-04-131-1/+7
| | | | | | and kldunload(2). Submitted by: Chris Costello <chris@holly.dyndns.org>
* Add kld(4) man page. Copyright notice in PR submission was "???", whichghelmer1999-04-131-0/+162
| | | | | | | | I changed to "Christopher G. Demetriou" since the page appears to be a revision of lkm(4). PR: docs/8611 Submitted by: Rajesh Vaidheeswarran <rv@fore.com>
* Make sending the postcard optional (as suggested by phk).hm1999-04-131-3/+4
|
* Update description of how to analyse kernel dumps.grog1999-04-131-60/+54
|
* Mention the new splash_pcx decoder.des1999-04-122-6/+28
|
* Fix typo's in previous commit.n_hibma1999-04-112-4/+10
|
* Added information on how to use a USB mouse under XFree.n_hibma1999-04-112-4/+64
| | | | Supplied by: Kazutaka YOKOTA
* Fix docs/10737nsouch1999-04-111-0/+2
|
* Corrections supplied by Kazutaka YOKOTA.n_hibma1999-04-112-26/+26
|
* Add the manpages for ums and ukbd (USB mouse and keyboards)n_hibma1999-04-115-2/+492
|
* Correct a link problem with zh_TW.BIG5, make the display reasonable.foxfair1999-04-101-2/+8
|
* Remove ports-plan9, add ports-palm.asami1999-04-082-4/+4
| | | | | PR: 11019 Submitted by: mharo@area51.fremont.ca.us (ports-supfile only)
* Dangit, forgot to add ti.4 to Makefile.wpaul1999-04-071-3/+4
| | | | Pointed out by: bde
* Document the new generic memory range management ioctls.msmith1999-04-072-2/+222
|
* Add driver support for gigabit ethernet adapters based on the Alteonwpaul1999-04-062-0/+384
| | | | | | | | | | | | | | | | | | | | | | | Networks Tigon 1 and Tigon 2 chipsets. There are a _lot_ of OEM'ed gigabit ethernet adapters out there which use the Alteon chipset so this driver covers a fair amount of hardware. I know that it works with the Alteon AceNIC, 3Com 3c985 and Netgear GA620, however it should also work with the DEC/Compaq EtherWORKS 1000, Silicon Graphics Gigabit ethernet board, NEC Gigabit Ethernet board and maybe even the IBM and and Sun boards. The Netgear board is the cheapest (~$350US) but still yields fairly good performance. Support is provided for jumbo frames with all adapters (just set the MTU to something larger than 1500 bytes), as well as hardware multicast filtering and vlan tagging (in conjunction with the vlan support in -current, which I should merge into -stable soon). There are some hooks for checksum offload support, but they're turned off for now since FreeBSD doesn't have an officially sanctioned way to support checksum offloading (yet). I have not added the 'device ti0' entry to GENERIC since the driver with all the firmware compiled in is quite large, and it doesn't really fit into the category of generic hardware.
* I've taken a pass through to add NetBSD and OpenBSD release dates,wosch1999-04-051-49/+64
| | | | | | | and to shuffle the NetBSD and OpenBSD entries in the tree to line the dates up with FreeBSD. Submitted by: David Brownlee <abs@anim.dreamworks.com>
* Represent the value 2**32 correctly in nroff. Previously, the troffgrog1999-04-051-1/+3
| | | | | | | operator up was being omitted, and the result was 232, a slightly lower value. Observed-by: Bill Vermillion <bill@bilver.magicnet.net>
* Correct bits, make output format clearly.foxfair1999-04-011-36/+36
|
* Add ${DESTDIR} to installation path. Move target to under beforeinstall:.asami1999-03-311-4/+2
| | | | Submitted by: bde
* I'm sorry, this was already fixed in etc/mtree/BSD.var.dist.sada1999-03-311-2/+1
| | | | Submitted by: asami@FreeBSD.ORG
* Sometimes we have to make `/var/db/pkg' directory before we createsada1999-03-311-1/+2
| | | | | `.mkversion' :) Submitted by: YAMAMOTO Shigeru <shigeru@bremen.or.jp>
* Create /var/db/pkg/.mkversion file with datestamp.asami1999-03-291-1/+4
|
* Document portmap_program and lpd_programjfitz1999-03-291-1/+11
| | | | Suggested by: Bill Fumerola <billf@jade.chc-chimes.com>
* typo fixeskjc1999-03-291-2/+2
| | | | | PR: docs/10738 Submitted by:Yamaguchi Takahiro tyama@titanium.crc.uec.ac.jp
* Describe referenced states for plex and subdisk.grog1999-03-281-9/+9
| | | | | | Remove BUGS entry for initializing RAID-5 plexes. Get date right.
* Increase the timeout and wait for ``PPP'' in the compuservebrian1999-03-281-3/+3
| | | | | | example. Submitted by: MALCOLM BOFF <Malcolm_Boff@compuserve.com>
* Remove incomplete diagram in troff output only.grog1999-03-271-4/+9
| | | | | | | | | Typo: replace 'subvolume' with 'subdisk'. Put a \& in front of a line starting with a period. PR: docs/10809 Reported-by: Kanenda
* Fixed bitrot in synopsis.bde1999-03-261-2/+2
|
* Fix recurring typo: fine -> filewpaul1999-03-2510-20/+20
|
* Mention securelevel 3 to match comment in rc.conf.ghelmer1999-03-241-2/+2
|
* Document natd_programbrian1999-03-241-1/+4
|
* Cosmetic changes for troff outputgrog1999-03-241-34/+60
| | | | | | Long-wished-by: joerg Clarify yet again how to perform a newfs on a vinum volume.
* Removed all traces of LN_FLAGS. It was only used to produce a linkbde1999-03-233-12/+43
| | | | | | | | | | | | | | | | /usr/sbin/sysctl -> ${DESTDIR}/sbin/sysctl in some versions of 2.2, and this link was broken if DESTDIR was set. Added a SYMLINKS macro. This works the same as LINKS, except it creates symlinks and the linked-to pathname may be relative. This is more flexible than LN_FLAGS, since it supports installing symlinks independently of hard links. Use `ln -f[s] ...' instead of `rm -f ...; ln [-s] ...' for LINKS and SYMLINKS. This is equivalent if the target is neither a directory nor a symlink to a directory. PR: 8279
* Typo fix (set --> get).alex1999-03-221-3/+3
| | | | Obtained from: OpenBSD (David Leonard)
* Restored objlink. The previous commit was confused about the differencebde1999-03-212-4/+14
| | | | between OBJLINK and objlink.
* Oops! forgot to introduce the src file in my last commit.foxfair1999-03-201-0/+78
|
* Supporting locale for Chinese Big5 completely.foxfair1999-03-202-4/+5
|
* Document net.inet.ip.fastforwarding, and the fact that it bypasses thedes1999-03-201-7/+17
| | | | | | ipfirewall code. Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* security(1) doesn't exist, but security(7) does.billf1999-03-201-2/+2
| | | | | PR: docs/10478 Submitted by: Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de>
* Clarify yet again that we need to synchronize the debug state ofgrog1999-03-191-19/+36
| | | | | | | kernel and userland modules. Describe the superdevice method of ensuring that people at least recognize the problem if they run into a debug synchronization problem.
* more $d -> %d fixesmsmith1999-03-191-4/+4
|
* Fix some $d -> %d mistakes.msmith1999-03-191-5/+5
| | | | Submitted by: crb@crbowman.erols.com
* Document the flags and p parameters to VOP_LOCK and VOP_UNLOCK. Also,ghelmer1999-03-172-7/+52
| | | | | | | at Doug Rabson's suggestion, add vn_lock(9) as an alternative name for this manpage and note its calling convention. PR: docs/9338
* Spelling and grammar fixes.ghelmer1999-03-151-23/+23
| | | | PR: docs/10401
* Fix reference (FreeBSD 3.0.1 -> FreeBSD 3.1), remove apparent typo,ghelmer1999-03-151-4/+5
| | | | | | and fix reference to sysctl(8). PR: docs/10428 docs/10482
* 1) line 76: "fine" should be "file"billf1999-03-152-6/+6
| | | | | | | 2) line 80: "abso" should be "also" PR: docs/10496 Submitted by: Osamu Mihara <mihara@prd.fc.nec.co.jp>
* Typo - latter -> letterbillf1999-03-151-2/+2
| | | | | PR: docs/10591 Submitted by: Kanenda <vanitas@ma3.seikyou.ne.jp>
* EACESS -> EACCESalex1999-03-151-2/+2
| | | | Submitted by: garath@code.ridgefield.org via OpenBSD
* New names for the list; the DES crypt and libwrap for tcp_wrappers.markm1999-03-141-1/+3
|
* Bitrot. Remove objlink as it is not pleasant to be downwind.markm1999-03-143-38/+6
| | | | | PR: 8071 Reviewed by: Sheldon Hearn <sheldonh@iafrica.com>
OpenPOWER on IntegriCloud