summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Wrong FBSD version number in HISTORY section.n_hibma2008-10-101-1/+1
| | | | Submitted by: pluknet
* ata module additions now nest ata modules one deeper than any prior module.imp2008-10-091-1/+1
| | | | Increase heuristic used to find them by one.
* Say hello to the u3g driver, implementing support for 3G modems.n_hibma2008-10-092-0/+101
| | | | | | | | | | | | | | | | | | | | | This was located in the ubsa driver, but should be moved into a separate driver: - 3G modems provide multiple serial ports to allow AT commands while the PPP connection is up. - 3G modems do not provide baud rate or other serial port settings. - Huawei cards need specific initialisation. - ubsa is for Belkin adapters, an Linuxy choice for another device like 3G. Speeds achieved here with a weak signal at best is ~40kb/s (UMTS). No spooky STALLED messages as well. Next: Move over all entries for Sierra and Novatel cards once I have found testers, and implemented serial port enumeration for Sierra (or rather have Andrea Guzzo do it). They list all endpoints in 1 iface instead of 4 ifaces. Submitted by: aguzzo@anywi.com MFC after: 3 weeks
* Remove stale BUGS.mav2008-10-081-3/+1
|
* Whitespace nitdes2008-10-081-1/+1
| | | | MFC after: 1 week
* Document new NGM_NETFLOW_SETCONFIG control message.mav2008-10-081-3/+31
|
* the 3945 firmware license does not require acknowledging the EULA,sam2008-10-071-17/+2
| | | | | | | | remove the sysctl ack requirement Pointed out by: Joerg Sonnenberger Reviewed by: thompsa Approved by: core
* Reference igb(4) i SEE ALSO.simon2008-10-061-0/+1
| | | | MFC after: 1 week
* Only a few of the loader tunables / sysctl variables are documented,simon2008-10-062-0/+197
| | | | | | | | | as I'm not really sure what the rest do. The list of adaptors was found at http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&Inst=Yes&DwnldID=15815 MFC after: 1 week
* - Add 82574 to list of supported controller chips.simon2008-10-061-3/+18
| | | | | | | | | | - Add Intel PRO/1000 PF and Intel PRO/1000 PT adaptors to list of supported adaptors. The list of adaptors was found at http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&Inst=Yes&DwnldID=10957 MFC after: 1 week
* Document that the bce(4) driver works with Dell PowerEdge 1950/2950simon2008-10-061-0/+4
| | | | | | NIC's. MFC after: 3 days
* Add a HARDWARE section. It doesn't contain any information notsimon2008-10-061-1/+12
| | | | | | | already in the DESCRIPTION section, but this allows for the manual page to be used in the automatic hardware notes generation. MFC after: 3 days
* Add myself as requested by the committers-guidelstewart2008-10-061-0/+4
| | | | Approved by: gnn (mentor)
* Add initial version of the nullfs(5) man pagedanger2008-10-052-0/+76
| | | | MFC after: 3 days
* Document that vr(4) supports Soekris Engineering net5501.simon2008-10-051-0/+2
|
* Note recently added ICH10 supportdelphij2008-10-041-2/+2
|
* - Minor mdoc cleanup.simon2008-10-041-3/+4
| | | | - Make HARDWARE section a bit more friendly for the Hardware Notes.
* - Add ae(4) to the list of devices support full hardware VLANstas2008-10-041-0/+1
| | | | | | | tags processing. Approved by: kib (mentor) MFC after: 1 week
* - Add manual page for ae(4) driver.stas2008-10-042-0/+153
| | | | | Approved by: kib (mentor) MFC after: 1 week
* - Document that 'show alllocks' and 'show locks' are only availablesimon2008-10-041-5/+10
| | | | | | | | | with witness. - Remove references to non-existing witness(9) and replace with witness(4) where appropriate. - Bump document date. MFC after: 3 days
* ITE IT8213F support.brueffer2008-10-031-2/+2
|
* Add hint about hw.snd.default_unit sysctl.mav2008-10-031-0/+5
|
* Update ng_tty for MPSAFE TTY.thompsa2008-10-031-16/+16
| | | | | | | | | | | | | This changes from a line discipline to the tty_hooks mechanism. Data will come in directly via rint_bypass and sent to the peer node in a single mbuf. As line disciplines are no longer used a new netgraph command called NGM_TTY_SET_TTY is used to attach the tty. This takes a pointer to to the open file descriptor of the tty and registers the tty hooks. When the tty disappears the node will shutdown. Thanks to: ed Sponsored by: Hobnob, Inc
* Apply upcoming fix for 2008g release.edwin2008-10-021-6/+27
|
* Mention support for nForce MCP77 and MCP79.yongari2008-10-021-2/+7
| | | | Touch Dd.
* Make example commands working.glebius2008-09-301-4/+4
| | | | Reviewed by: benjsc
* Add unistd.h to the getosreldate(3) manpage.kib2008-09-301-5/+9
| | | | | | Update referenced example to include unistd.h per manpage. Update example to be more style(9)-ish, silence warnings and add FreeBSD id to the source file.
* Small typo in the makedev(3) manpage.ed2008-09-281-1/+1
| | | | | devtoname(3) is a nonexistent function. We do have devtoname(9), but that's entirely different. The correct function is devname(3).
* Several documentation fixups related to device minor/major numbers:ed2008-09-285-82/+97
| | | | | | | | | | | | | - Document the minor(3), major(3) and makedev(3) macro's. They also apply to umajor() and uminor() in the kernel, but hopefully we'll sort that out one day. - Briefly dev2unit() inside the make_dev(9) manual page, since this is now the preferred macro to obtain character device unit numbers inside the kernel. - Remove the device_ids(9) manual page. It contains highly inaccurate information, such as a description of the nonexistent major().
* Add stronger warning that spl is historical. I almost deleted thisimp2008-09-281-0/+12
| | | | | man page entirely, but it is still mildly useful in understanding the few splxxx usages we still have in the tree.
* Also use dev2unit() in the pseudo-driver example script.ed2008-09-271-1/+1
| | | | | Because I'm planning on MFC'ing my last change to this file, make sure we use dev2unit() here as well.
* Rename the `minor' argument of make_dev(9) to `unit'.ed2008-09-261-6/+6
| | | | | | | | | To prevent any further confusion about device minor and unit numbers, we'd better just refer to device unit numbers. Many people still think the numbers we show inside devfs have any relation to the numbers passed to make_dev(9), which is not the case. Discussed with: kib
* Undocument dead option.des2008-09-241-10/+0
| | | | MFC after: 3 days
* Allow a jail's IP alias to be created with an arbitrary netmask.ru2008-09-241-1/+7
| | | | MFC after: 3 days
* regensam2008-09-231-1/+168
|
* Add my entry to committers-src.dotrnoland2008-09-221-0/+2
| | | | Approved by: jhb(mentor)
* Make the make_pseudo_driver.sh shellscript work again.ed2008-09-221-2/+2
| | | | | | | | | | | It seems this script was broken because of the SYSINIT changes and a rather awkward variable initialisation. For some reason the make_device_driver.sh script is also broken, related to BUS_SETUP_INTR. I have no experience with FreeBSD's interrupt handling, so I hope someone else is willing to take a look at that shell script. PR: misc/126435 MFC after: 1 month
* Document changes in behaviour due to sparse CPU numbering support.jkoshy2008-09-221-9/+17
|
* add new build knobs and jigger some existing controls to improvesam2008-09-212-17/+66
| | | | | | | | control over the result of buildworld and installworld; this especially helps packaging systems such as nanobsd Reviewed by: various (posted to arch) MFC after: 1 month
* Change the wording to prefer 'forwarding' but still retain the word routing forthompsa2008-09-191-1/+2
| | | | | | clarity. Suggested by: dougb
* Hello, svn world! (adding myself to yet another list)zec2008-09-181-0/+2
| | | | Approved by: silby (mentor)
* Fix small mistake.mav2008-09-181-3/+3
|
* Add ASUS P5KPL-C to the list of supported motherboard.yongari2008-09-181-1/+3
| | | | Reported by: < nikola.lecic <at> anthesphoria dot net >
* Bump modification date.mav2008-09-171-1/+1
|
* Fix a typo.mav2008-09-171-1/+1
|
* Add set of snd_hda driver configuration examples to the man page.mav2008-09-171-0/+97
|
* Remove the suser(9) interface from the kernel. It has been replaced fromattilio2008-09-175-128/+3
| | | | | | | | | | | | | | | | | years by the priv_check(9) interface and just very few places are left. Note that compatibility stub with older FreeBSD version (all above the 8 limit though) are left in order to reduce diffs against old versions. It is responsibility of the maintainers for any module, if they think it is the case, to axe out such cases. This patch breaks KPI so __FreeBSD_version will be bumped into a later commit. This patch needs to be credited 50-50 with rwatson@ as he found time to explain me how the priv_check() works in detail and to review patches. Tested by: Giovanni Trematerra <giovanni dot trematerra at gmail dot com> Reviewed by: rwatson
* Allow a jail to be started with a specific route fib.thompsa2008-09-161-1/+6
| | | | | Reviewed by: secteam (simon) Reviewed by: brooks, bz
* Add the ffs structures introspection functions for ddb.kib2008-09-161-0/+20
| | | | | | | | | Show the b_dep value for the buffer in the show buffer command. Add a comand to dump the dirty/clean buffer list for vnode. Reviewed by: tegge Tested and used by: pho MFC after: 1 month
* MFV of tzdata2008c:edwin2008-09-164-11/+139
| | | | | | Changes for Mauritius, Morocco, Pakistan, Palestine, Argentina and Brazil. Approved by: bde@ (implicit)
OpenPOWER on IntegriCloud