Christian Brueffer
3e1e998fac
singular -> plural and a typo fix.
2006-07-25 05:20:06 +00:00
Nate Lawson
cf90f178b9
Add support for overriding the values for _CRT, _HOT, and _PSV via sysctl.
...
Prevent casual modification by requiring hw.acpi.thermal.user_override to
be set first. Fix printing of negative temperatures in the K->C conversion.
Document the remaining thermal sysctls.
MFC after: 3 days
2006-07-25 02:27:38 +00:00
Pyun YongHyeon
788b409578
Add stge(4) to the list of device drivers use the miibus interface.
2006-07-25 00:59:39 +00:00
Pyun YongHyeon
5d44cffc71
Add stge(4) to the list of drivers supporting ALTQ.
2006-07-25 00:58:00 +00:00
Pyun YongHyeon
97fe1b0932
Add stge(4) to the list of devices supporting full VLAN processing
...
in the hardware.
2006-07-25 00:56:47 +00:00
Pyun YongHyeon
dba53116ec
Add stge(4) to the list of devices supporting polling.
2006-07-25 00:54:58 +00:00
Pyun YongHyeon
f99b1927db
Hook up state(4) to the build.
2006-07-25 00:53:14 +00:00
Pyun YongHyeon
2627a07e9c
Add a man page for stge(4).
2006-07-25 00:51:38 +00:00
Michael Reifenberger
93a73e5a00
Reflect the additional support of C7 CPU's in padlock(4).
...
Submitted by: brueffer
MFC after: 1 day
2006-07-19 16:31:09 +00:00
Yoshihiro Takahashi
adb4f1aa0f
The pcn does not work on NEC SV-98/2-B05 and B06.
...
Submitted by: Chiharu Shibata
MFC after: 3 days
2006-07-19 11:49:22 +00:00
Christian Brueffer
961ed9347e
- Bring kern.random output closer to reality
...
- Remove kern.random.sys.burst, it's no longer available
- Document kern.random.sys.harvest.swi (1)
PR: 100167 (1)
MFC after: 3 days
2006-07-19 10:49:43 +00:00
Marcus Alves Grando
044f8af1a4
- Add dependency of firmware(9). "MODULE_DEPEND(iwi, firmware, 1, 1, 1);"
...
Approved by: brueffer
MFC after: 1 week
2006-07-17 18:56:27 +00:00
Christian Brueffer
80da51effc
General cleanup, not quite finished yet.
2006-07-16 20:43:12 +00:00
Alexander Leidinger
bef800b384
Add a man-page for snd_emu10kx. Someone with man-fu should have a look
...
and improve it.
Submitted by: Yuriy Tsibizov <Yuriy.Tsibizov@gfk.ru> (minor mods by me)
2006-07-15 20:31:26 +00:00
Christian Brueffer
7f5932be3e
Correct path to the firmware ports.
2006-07-12 15:55:48 +00:00
Christian Brueffer
ac4312607d
Document ServerWorks HT1000 support.
2006-07-05 08:26:50 +00:00
Ruslan Ermilov
5ca2b383e7
Grammar nit.
2006-07-01 17:59:13 +00:00
Ruslan Ermilov
3265e741f9
Gleb committed an intermediary version, commit the right one now.
...
Submitted by: Vadim Goncharov
2006-06-30 11:35:35 +00:00
Xin LI
8709e75efb
- Reflect recent sched_core(4) changes.
...
- Some typo fixes.
2006-06-30 07:45:38 +00:00
Takanori Watanabe
a42cdc22c0
Update man page.
...
Pointed out by: netchild
MFC after: 3 days
2006-06-29 08:28:18 +00:00
Christian Brueffer
fe0e43d648
- s/nve/nfe/ in the SYNOPSIS (1)
...
- bump date
PR: 99575
Submitted by: thierry herbelot <thierry@herbelot.com> (1)
2006-06-28 10:19:16 +00:00
Christian Brueffer
904887e254
- Convert to our new SYNOPSIS style
...
- Correct tcpdump reference
2006-06-27 12:48:15 +00:00
Gleb Smirnoff
d473c9d543
A netgraph node that can do different manipulations with
...
mbuf_tags(9) on packets.
Submitted by: Vadim Goncharov <vadimnuclight tpu.ru>
mdoc(7) reviewed by: ru
2006-06-27 12:45:28 +00:00
David E. O'Brien
bfc788c283
Add a pure open source nForce Ethernet driver, under BSDL.
...
This driver was ported from OpenBSD by Shigeaki Tagashira
<shigeaki@se.hiroshima-u.ac.jp> and posted at
http://www.se.hiroshima-u.ac.jp/~shigeaki/software/freebsd-nfe.html
It was additionally cleaned up by me.
It is still a work-in-progress and thus is purposefully not in GENERIC.
And it conflicts with nve(4), so only one should be loaded.
2006-06-26 23:41:07 +00:00
Andrew Thompson
0956028163
Hook enc(4) to the build.
2006-06-26 22:31:26 +00:00
Andrew Thompson
bdea400f3b
Add a pseudo interface for packet filtering IPSec connections before or after
...
encryption. There are two functions, a bpf tap which has a basic header with
the SPI number which our current tcpdump knows how to display, and handoff to
pfil(9) for packet filtering.
Obtained from: OpenBSD
Based on: kern/94829
No objections: arch, net
MFC after: 1 month
2006-06-26 22:30:08 +00:00
Bill Paul
ed510fb04f
Add support for the RealTek 8169SC/8110SC and RTL8101E devices. The
...
latter is a PCIe 10/100 chip.
Finally fix the EEPROM reading code so that we can access the EEPROMs on all
devices. In order to access the EEPROM, we must select 'EEPROM programming'
mode, and then set the EEPROM chip select bit. Previously, we were setting
both bits simultaneously, which doesn't work: they must be set in the
right sequence.
Always obtain the station address from the EEPROM, now that EEPROM
reading works correctly.
Make the TX interrupt moderation code based on the internal timer
optional and turned off by default.
Make the re_diag() routine conditional and off by default. When it is
on, only use it for the original 8169, which was the only device that
that really needed it.
Modify interrupt handling to use a fast interrupt handler and fast
taskqeueue.
Correct the rgephy driver so that it only applies the DSP fixup for
PHY revs 0 and 1. Later chips are fixed and don't need the fixup.
Make the rgephy driver advertise both 1000_FD and 1000_HD bits in
autoneg mode. A couple of the devices don't autoneg correctly unless
configured this way.
2006-06-26 20:31:32 +00:00
Christian Brueffer
1fca3e7045
- Convert to new SYNOPSIS layout
...
- New Sentence, new line
- Remove eol whitespace
MFC after: 3 days
2006-06-22 20:03:35 +00:00
Christian Brueffer
17c6d5a742
Boji Tony Kannanthanam no longer supports this driver, Achim Leubner
...
however still does. Confirmed by email contact with both of them.
MFC after: 3 days
2006-06-19 15:22:34 +00:00
Alexander Leidinger
5ea8ff67ee
Document support for the Aceeca Mez1000 RDA.
2006-06-18 17:56:37 +00:00
Christian Brueffer
69af36686e
We just have one generic sound driver, reflect this.
...
MFC after: 3 days
2006-06-18 17:53:04 +00:00
Christian Brueffer
7e7a050537
o We only have one generic audio driver, reflect this (1)
...
o Mention the author of the driver
o Minor mdoc improvement
Discussed with: netchild (1)
2006-06-18 17:48:08 +00:00
Alexander Leidinger
9e270de5ac
Add support for:
...
- Curitel PC5740 Wireless Modem (Verizon's PCMCIA card)
- Sierra MC5720 Wireless Modem (Built in to Thinkpad X60s)
Bump the date in the uscanner man page for the update some minutes ago.
2006-06-18 17:46:40 +00:00
Alexander Leidinger
4e93c5c41e
Add Epson Perfection 1270 scanner. All other scanners in the PR are already
...
detected, but with a different name.
PR: 98106
Submitted by: Lars Engels <lars.engels@0x20.net>
2006-06-18 17:29:16 +00:00
Alexander Leidinger
4d3976cebb
2 spelling fixes...
...
Noticed by: John E Hein <jhein@timing.com>
2006-06-18 17:02:21 +00:00
Christian Brueffer
c0a9b4dc1f
o sort the HARDWARE list somewhat
...
o mention ATA and SATA support
o mdoc improvements
MFC after: 3 days
2006-06-18 14:45:28 +00:00
Christian Brueffer
2c90ece85e
o Remove FILES section (uninteresting for users)
...
o Xref asr(4)
MFC after: 3 days
2006-06-18 14:37:48 +00:00
Christian Brueffer
ea6af27ab0
o Capitalization fixes
...
o Remove the outdated FILES section
MFC after: 3 days
2006-06-18 14:12:27 +00:00
Christian Brueffer
cb0767679a
Add MLINKS:
...
ixgb.4 -> if_ixgb.4
mxge.4 -> if_mxge.4
2006-06-18 14:08:20 +00:00
Alexander Leidinger
b23fd15a6c
- xref linsysfs
...
- improve the ldconfig part
- tell about pitfalls with the osrelease sysctl
2006-06-18 13:51:39 +00:00
Alexander Leidinger
826209c583
Alpha is gone, no need to keep them.
2006-06-18 13:44:26 +00:00
Christian Brueffer
5cf3ccd2bf
o Convert to our new SYNOPSIS layout
...
o Add "device scbus/pci/etc" where needed for consistency
MFC after: 3 days
2006-06-18 09:53:00 +00:00
Christian Brueffer
ec33470ba7
Correct date for the previous commit.
2006-06-18 07:33:51 +00:00
Christian Brueffer
419e6e8d6a
- Bring the hardware list up to date
...
- Convert to our standard SYNOPSIS layout
- Remove the kld from FILES, it's now mentioned in the SYNOPSIS
- Remove useless .Pp call at eof
MFC after: 3 days
2006-06-17 18:45:53 +00:00
Alexander Leidinger
c0d31ea3b5
Add man page for the envy24 driver.
2006-06-17 16:43:21 +00:00
Andrew Thompson
76f1f010d5
Document that we can only bridge wireless interfaces in hostap mode, this is
...
becoming a faq.
MFC after: 1 week
2006-06-16 23:03:22 +00:00
Christian Brueffer
259c768857
Mention that the powernow driver also supports AMD Cool'n'Quiet.
...
MFC after: 3 days
2006-06-16 14:51:23 +00:00
Christian Brueffer
bc25e29aa1
mxge(4) works with altq.
...
Tested by: gallatin
2006-06-15 19:38:42 +00:00
Christian Brueffer
dea060ff55
- new sentence -> new line
...
- s/freebsd/FreeBSD/ for consistency
- eol and eof whitespace removed
2006-06-14 18:26:34 +00:00
Andrew Gallatin
89d098f8dd
Remove the initial myri10ge driver, now that it has been
...
renamed mxge.
2006-06-14 17:07:21 +00:00