9574 Commits

Author SHA1 Message Date
alfred
e39e879ede Enter the autofs. 2004-08-31 16:26:01 +00:00
sheldonh
ce29f69e30 Regen:
* Hart:		rev 489 of pcidevs.txt (2004-08-23)
* Boemler:      vendors.txt (2004-08-30)
2004-08-30 15:50:50 +00:00
pjd
9833028211 According to module(9), when command is unrecognized, the module should
return EOPNOTSUPP.
2004-08-30 09:49:59 +00:00
des
334e9f9ebe According to mdoc(7), HISTORY comes before AUTHORS.
MFC after:	3 days
2004-08-29 11:19:35 +00:00
tjr
3f14b0370b Symlink missing lt_LT.ISO8859-4 LC_MONETARY, LC_MESSAGES and LC_NUMERIC
data files to the ISO8859-13 versions.
2004-08-28 13:24:24 +00:00
tjr
73afa7d781 Add Basque (Spain) locales: eu_ES.ISO8859-1, eu_ES.ISO8859-15, eu_ES.UTF-8.
(This differs somewhat from the version originally submitted - any mistakes
are my own.)

PR:		68524
Submitted by:	J. Vicente Carrasco -Bixen-
2004-08-28 12:52:31 +00:00
tjr
fbf891e58c Re-generate from ru_RU.KOI8-R.src. Due to a bug in either iconv or
ru_RU.CP866.src, the previous version of this file contained a strange
conversion error: nostr had U+255C BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
instead of U+0435 CYRILLIC SMALL LETTER IE.
2004-08-28 10:59:03 +00:00
sanpei
6c145986fe Add support Corega CG-LAPCIGT Gigabit Ethernet(8169S)
PR:		[FreeBSD-users-jp 80667]
Submitted by:	FUJIMOTO Kou <fujimoto@j.dendai.ac.jp>
MFC after:	1 week
2004-08-28 10:59:02 +00:00
jmg
3a05fa07b2 document that m_free returns m_next of the free'd mbuf 2004-08-28 03:46:18 +00:00
simon
8909a0eb93 Add manual pages for several sound drivers.
Submitted by:	Atte Peltomaki <koston@iki.fi>
Reviewed by:	cg
MFC after:	5 days
2004-08-27 22:06:56 +00:00
andre
d243747d92 Always compile PFIL_HOOKS into the kernel and remove the associated kernel
compile option.  All FreeBSD packet filters now use the PFIL_HOOKS API and
thus it becomes a standard part of the network stack.

If no hooks are connected the entire packet filter hooks section and related
activities are jumped over.  This removes any performance impact if no hooks
are active.

Both OpenBSD and DragonFlyBSD have integrated PFIL_HOOKS permanently as well.
2004-08-27 15:16:24 +00:00
osa
5ac6b38f63 Two things:
1. we are already under 6.0-CURRENT
2. add FreeBSD Design and Impl. book description
   (obtained from http://www.awprofessional.com/title/0201702452)

Approved by:	wosch (maintainer)
2004-08-27 13:38:01 +00:00
brueffer
d38be008d8 - move the list of supported adapters into a HARDWARE section
- properly capitalize Ethernet
- replace a misleading 'adapter' with 'chipset'
- bump document date

MFC after:	3 days
2004-08-26 08:34:09 +00:00
brueffer
e74fb6ff0d - move the list of supported adapters into a HARDWARE section
- sort the list of adapters
- add the 3Com 3c460 HomeConnect Ethernet USB Adapter [1]
- properly capitalize Ethernet
- replace a misleading 'adapter' with 'chipset'
- bump document date

Obtained from:	NetBSD [1]
MFC after:	3 days
2004-08-26 08:33:03 +00:00
tjr
ccbf593e7e Re-generate from sl_SI.ISO8859-2.src rev. 1.8 (lowercase month/weekday names). 2004-08-26 08:18:56 +00:00
tjr
f1e1a1097b Begin month and weekday names with a lowercase letter. This is consistent
with (at least) Solaris, ICU and glibc.

PR:		65317
Submitted by:	Uros
MFC after:	1 week
2004-08-26 08:15:48 +00:00
imp
73199cf7e9 Add reference to vslock(9) for locking user address pages into core.
Suggested by: alc
2004-08-26 04:16:55 +00:00
simon
73c0fca7e7 Bump document date for last commit. 2004-08-26 00:26:52 +00:00
simon
af774d215c - Add a HARDWARE section which lists supported devices.
- Mark up each item in the device list with .It, as per mdoc(7) and to
  make it simpler for auto generated Hardware Notes to parse the manual
  page.

MFC after:	3 days
2004-08-26 00:19:54 +00:00
brueffer
2c8818f579 - use .Nm
- fix some grammar and spelling mistakes

MFC after:	3 days
2004-08-25 23:43:55 +00:00
brueffer
37fdb36eba - move list of supported adapters into a HARDWARE section
- fix capitalization of a "to"
- bump document date

MFC after:	3 days
2004-08-25 22:46:36 +00:00
brueffer
6cba0a9ac0 - put the list of supported adapters into a HARDWARE section
- make the Buffalo entry look better
- properly capitalize Ethernet and Fast Ethernet
- bump document date

MFC after:	3 days
2004-08-25 22:39:05 +00:00
simon
cc9b37b925 Fix grammar nit.
Submitted by:	brueffer
MFC after:	2 days
2004-08-25 22:36:47 +00:00
mlaier
4de2140db0 Document supported devices here (for lack of a better place). Users
interested in ALTQ are likely to type in "man altq" at some point and maybe
they will scroll down to the bottom as well.

MFC after:	3 days
2004-08-25 18:49:32 +00:00
brueffer
c9df8692f7 Move a paragraph from the HARDWARE section back into the
DESCRIPTION section.  Also adapt it to make it fit in better.

Requested by:	simon
2004-08-25 11:57:06 +00:00
imp
a3a1f70ff4 Clarify what the lockfunc is used for. When it will be called and
when it won't be called.  The old wording was correct, but not
sufficiently specific to understand when and how it would be called.
The new wording describes the current implementation's usage (which
should be updated if other appropriate times are decided upon),
specifically that it is called only when the load operation is
deferred to keep the locking state consistent.  When the operation
isn't deferred, the calling routine is assumed to have a coherent
locking world.

Reviewed by: scottl
2004-08-24 23:09:57 +00:00
brueffer
8d9fa8f586 - move the list of supported devices into a HARDWARE section
- bump document date
2004-08-24 21:33:14 +00:00
brueffer
a212cc9755 - move device listing and hardware notes into a HARDWARE section
- properly capitalize Gigabit Ethernet
- bump document date
2004-08-24 21:32:03 +00:00
brueffer
715faf0e37 - move the list of supported adapters to a HARDWARE section
- correct entry for the Belkin card (we don't support 10GbE in sk(4)) :-)
- properly capitalize Gigabit Ethernet
- wordsmithing on a sentence
- bump document date
2004-08-24 17:38:53 +00:00
brueffer
d13034e2e1 Add the SMC EZ Card 10/100 as supported hardware 2004-08-24 16:06:57 +00:00
brueffer
7bf3267bfb Correct the link to the AIC-6915 programmer's manual 2004-08-24 15:56:47 +00:00
brueffer
b6d39051a3 - move list of supported adapters into a HARDWARE section
- correctly capitalize Fast Ethernet
- correct two typos
- bump document date
2004-08-24 15:37:36 +00:00
ru
ccba343195 Fixed a misspelling of the hook name.
Submitted by:	Pawel Malachowski
2004-08-24 04:05:52 +00:00
imp
5c1c6f2674 Even in a 80 column, fixed point font, there's plenty of room for all
the arguments to bus_dmamap_load, so don't use '...' but list the
actual args.  '...' usually means a variable number of args (cf
printf(3)), but bus_dmamap_load takes a fixed number of arguments.
2004-08-23 23:28:02 +00:00
imp
b28f179924 In the SYNOPSIS section, move the bus_dmamem_alloc function prototype
to just before bus_dmamem_free, which is (a) more logical; (b) likely
what was originally intended and (c) matches the order in the NAME and
FUNCTIONS sections.
2004-08-23 23:17:31 +00:00
brueffer
2c9dfeb26f Wordsmithing in the hardware section. 2004-08-23 16:48:22 +00:00
trhodes
6eaad9248d Protect the period! And add a new line.
Guilty of bad merge:	trhodes
2004-08-21 20:40:51 +00:00
trhodes
10880df265 Document recently added features and bump the doc date. 2004-08-21 20:26:03 +00:00
simon
dbcc99d05d mdoc(7) janitor:
- Fix hard sentence breaks.

MFC after:	3 days
2004-08-21 12:58:09 +00:00
jmg
3dc1409438 document that the sk driver now supports the Belkin F5D5005 gige card. 2004-08-20 06:27:58 +00:00
trhodes
83fb3b8169 Replace the ERRORS section with a DIAGNOSTICS section.
Requested by:	ru
2004-08-20 05:25:11 +00:00
trhodes
0d6e4617a6 Replace the ERRORS section with a DIAGNOSTICS section.
Requested by:	ru
2004-08-20 05:07:02 +00:00
trhodes
b002cd4ada Fix a few style nits.
Noticed by:	Mr. mdoc(7) himself, ru
2004-08-20 04:52:00 +00:00
simon
18e6bc7e91 Add a HARDWARE section which lists supported devices based on the
Hardware Notes.

MFC after:	3 days
2004-08-19 21:37:32 +00:00
simon
e33c8ea9bb Add a HARDWARE section which lists supported devices.
MFC after:	3 days
2004-08-19 21:34:31 +00:00
simon
ac35ab6a2f Add a HARDWARE section which lists supported devices.
MFC after:	3 days
2004-08-19 21:24:45 +00:00
simon
80499ed5b2 Move listing of DTC 3290 to aha(4).
MFC after:	3 days
2004-08-19 20:49:39 +00:00
andre
44f45fc5c1 Note that IPFIREWALL depends on PFIL_HOOKS compiled into the kernel as well.
Submitted by:	ceri, simon (mdoc fixes)
2004-08-19 18:04:10 +00:00
brueffer
aa0125927b Add a HARDWARE section and bump the document date
MFC after:	3 days
2004-08-19 14:33:53 +00:00
maxim
8781e41e55 Remove an unnecessary .It.
Reviewed by:	ru
2004-08-19 13:41:06 +00:00