summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Move the part in bsd.own.mk that sets -Wno-c++11-extensions for clang todim2014-02-212-9/+6
| | | | | | | | bsd.sys.mk, where it really belongs. This also causes the flag to get added when clang is *not* the default system compiler, but is still used, e.g. by setting WITH_CLANG_IS_CC manually. MFC after: 3 days
* Explain how and where kern.cam.ada.write_cache can be set in practicalivoras2014-02-211-3/+8
| | | | | | | situations. Reviewed by: hrs Approved by: mav
* Regen after addition of WITHOUT_DMAbapt2014-02-211-1/+6
|
* Import Dragonfly Mail Agent into base systembapt2014-02-211-0/+2
| | | | | | | | | | | | It is a small and lightweight Mail Transport Agent. It accepts mails from locally installed Mail User Agents (MUA) and delivers the mails either locally or to a remote destination. Remote delivery includes several features like TLS/SSL support, SMTP authentication and NULLCLIENT. Make dma conditional to new WITHOUT_DMA option and make it respect WITHOUT_MAIL Reviewed by: peter Discussed with: emaste, bz, peter
* Spelling, grammar and mdoc cleanup.brueffer2014-02-202-30/+46
|
* Fix a cross-reference.brueffer2014-02-201-1/+3
| | | | MFC after: 3 days
* Spelling, grammar and mdoc cleanup.brueffer2014-02-191-14/+16
| | | | MFC after: 1 week
* Add missing Save Cursor support for VT520bdrewery2014-02-191-1/+1
| | | | | | | | Submitted by: IWAMOTO Kouichi <sue@iwmt.org> PR: conf/174937 Obtained from: http://web.mit.edu/dosathena/doc/www/ek-vt520-rm.pdf Approved by: bapt (mentor) MFC after: 2 weeks
* Upgrade our copy of llvm/clang to 3.4 release. This version supportsdim2014-02-161-1/+1
| | | | | | | | | | | | | | | | | all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month
* Retire the nve(4) driver; nfe(4) has been the default driver for NVIDIAbrueffer2014-02-165-159/+0
| | | | | | | nForce MCP adapters for a long time. Yays: jhb, remko, yongari Nays: none on the current and stable lists
* Add forgotten rc.conf(5) update with r261931bdrewery2014-02-151-1/+21
| | | | | | Reviewed by: trasz Approved by: bapt (mentor) MFC after: 1 week
* complete svn 261909 - new netmap version.luigi2014-02-151-90/+193
| | | | | | since i updated the manpage i might as well commit it. MFC after: 3 days
* Fix a typo, C_ALSOLUTE -> C_ABSOLUTE.ian2014-02-151-1/+1
|
* update taskqueue(9) manual pageavg2014-02-142-2/+78
| | | | | | | Many thanks to bjk, gjb and pluknet for improvements and suggestions. MFC after: 5 days Sponsored by: HybridCluster
* Add OFW support to the in tree gpio compatible devices: gpioiic(4) andloos2014-02-132-3/+135
| | | | | | | | | | | | | | | | gpioled(4). Tested on RPi and BBB (using the hardware I2C controller and gpioiic(4) for the I2C tests). It was also verified for regressions on RSPRO (MIPS/ar71xx) used as reference for a non OFW-based system. Update the gpioled(4) and gpioiic(4) man pages with some details and examples about the FDT/OFW support. Some compatibility details pointed out by imp@ will follow in subsequent commits. Approved by: adrian (mentor, implicit)
* Add a deprecation notice to nve.4 and Xref nfe.4.brueffer2014-02-131-1/+10
| | | | MFC after: 3 days
* Bump .Dd forgotten in r261832.zeising2014-02-131-1/+1
| | | | MFC after: 2 weeks
* Add cross references between rc.conf(5) and jail.conf(5).zeising2014-02-131-0/+1
| | | | MFC after: 2 weeks
* Remove obsolete vnode(9) man page references.wblock2014-02-121-8/+5
| | | | | | PR: docs/186537 Submitted by: Miklos Magyari <miklos@magyari.hu> MFC after: 3 days
* Fix wrong device name in example.mav2014-02-101-1/+1
| | | | | | PR: docs/185602 Submitted by: koitsu MFC after: 1 week
* Update and sort the list of iwn(4) firmware.brueffer2014-02-092-7/+15
| | | | MFC after: 1 week
* Add cross-references to casperd(8) and libcapsicum(3).pjd2014-02-071-1/+3
| | | | Suggested by: rwatson
* Add some context for the "kldload sem" command; minor other improvements.brueffer2014-02-071-3/+7
| | | | | | PR: 183650 Submitted by: Bjorn Heidotting MFC after: 1 week
* The atp USB driver is generic and its manual page should be availablehselasky2014-02-071-5/+2
| | | | | | for all platforms. Add wsp manual page to build. MFC after: 1 week
* Update atp driver manual page.hselasky2014-02-071-52/+1
| | | | | | Moused is now started automatically by devd. MFC after: 1 week
* Add manual page for wsp driver.hselasky2014-02-071-0/+96
| | | | MFC after: 1 week
* sysctl_handle_counter_u64() doesn't use arg2 argument, thus simplifyglebius2014-02-071-3/+3
| | | | | | the SYSCTL_COUNTER_U64() macro. Sponsored by: Nginx, Inc.
* Provide macros that allow easily export uma(9) zone limits andglebius2014-02-071-1/+38
| | | | | | | | | | | current usage via sysctl(9): SYSCTL_UMA_MAX() SYSCTL_ADD_UMA_MAX() SYSCTL_UMA_CUR() SYSCTL_ADD_UMA_CUR() Sponsored by: Nginx, Inc.
* In IPv6 code examples, use the correct v6 socket.brueffer2014-02-071-2/+2
| | | | MFC after: 1 week
* Add a manpage for the urndis driver.brueffer2014-02-062-0/+99
| | | | Obtained from: OpenBSD
* - Update a few places to account for va_copy().jhb2014-02-051-14/+23
| | | | | | | | | - Create a separate 'return values' section and move some statements about return values to that section. - Note that each invocation of va_start() and va_copy() must be paired with va_end() in the same function. MFC after: 1 week
* Actually install acpi_rapidstart.4.brueffer2014-02-041-0/+2
| | | | MFC after: 1 week
* Add a tunable "hw.mfi.mrsas_enable" to allow mfi(4) to drop priority andambrisko2014-02-041-0/+11
| | | | | | | | | | | | | | | | | | | | allow mrsas(4) from LSI to attach to newer LSI cards that are support by mrsas(4). If mrsas(4) is not loaded into the system at boot then mfi(4) will always attach. If a modified mrsas(4) is loaded in the system. That modification is return "-30" in it's probe since that is between BUS_PROBE_DEFAULT and BUS_PROBE_LOW_PRIORITY. This option is controller by a new probe flag "MFI_FLAGS_MRSAS" in mfi_ident that denotes cards that should work with mrsas(4). New entries that should have this option. This is the first step to get mrsas(4) checked into FreeBSD and to avoid collision with people that use mrsas(4) from LSI. Since mfi(4) takes priority, then mrsas(4) users need to rebuild GENERIC. Using the .disabled="1" method doesn't work since that blocks attaching and the probe gave it to mfi(4). Discussed with: LSI (Kashyap Desai)
* Add back reference to buf(9) removed in r32223 as buf(9) was addedbdrewery2014-02-021-2/+2
| | | | | | in r42016. Approved by: bapt (mentor)
* MLINK ixgbe.4 to {if_ix.4, ix.4}. An update for ixgbe.4brueffer2014-01-311-0/+2
| | | | | | | | | which deals with the "ix prefix being shared by two drivers" situation is forthcoming. Thanks to dwhite for the ixgbe history lesson. MFC after: 1 week
* Sort Xr's.pluknet2014-01-311-1/+1
|
* [mdoc] Avoid a line break.pluknet2014-01-311-0/+1
|
* o NetBSD 6.1.3 added.maxim2014-01-311-14/+9
|
* add a few missing links...jmg2014-01-311-0/+4
| | | | | Submitted by: J David MFC after: 1 week
* Regenerate for WITHOUT_FMTREE and WITHOUT_NCURSESW.brooks2014-01-301-0/+9
| | | | | MFC after: 4 weeks Sponsored by: DARPA, AFRL
* Merge from CheriBSD:brooks2014-01-301-0/+1
| | | | | | | | | | | commit 2d581e8caf79d7a0f5a24590eccd06da90cccb74 Author: Brooks Davis <brooks@one-eyed-alien.net> Date: Mon Jan 27 22:57:51 2014 +0000 Add WITHOUT_FMTREE to disable building fmtree. MFC after: 4 weeks Sponsored by: DARPA, AFRL
* Merge from CheriBSD:brooks2014-01-302-11/+0
| | | | | | | | | | | | commit 6b569451b92c48ccf1768da32e7e89189e1aa253 Author: Brooks Davis <brooks@one-eyed-alien.net> Date: Mon Jan 27 22:50:46 2014 +0000 Always install nmtree as mtree. For compability, link mtree to nmtree. X-MFC after: never Sponsored by: DARPA, AFRL
* Merge from CheriBSD:brooks2014-01-301-0/+1
| | | | | | | | | | | | | commit c1acf022c533c5ae27e0cd556977eafe3f5959eb Author: Brooks Davis <brooks@one-eyed-alien.net> Date: Fri Jan 17 21:46:44 2014 +0000 Add an option WITHOUT_NCURSESW to suppress building and linking to libncursesw. While wide character support it useful we'd like to only need one ncurses library on embedded systems. MFC after: 4 weeks Sponsored by: DARPA, AFRL
* Revert outdated info related to WITH_LIBCPLUSPLUS that was included inbrooks2014-01-301-4/+4
| | | | r261072. src.conf.5 now matches makeman's output.
* link mbuf to m_append so it can be found...jmg2014-01-281-0/+1
| | | | | Pointed out by: J David MFC after: 1 week
* mdoc: fix several uses of the Fx macro to point to actual releases.uqs2014-01-282-2/+2
| | | | Found by: make manlint
* Add FreeBSD 2.2.9, the April Fools release.uqs2014-01-281-2/+5
| | | | | I decided not to extend the graph to the actual point in time when it was released, that would just look silly.
* Add missing 'n' after '\'skreuzer2014-01-281-1/+1
| | | | | Reported by: gavin Approved by: hrs (mentor)
* Add myself as a developerrodrigo2014-01-271-0/+3
| | | | | | Add bapt@ and kwm@ as mentors Approved by: kwm@ (co-mentor)
* Remove WITHOUT_ATF as it has been replaced by WITH_TESTSskreuzer2014-01-232-14/+4
| | | | | | PR: conf/185326 Reported by: Igor Mozolevsky <igor@hybrid-lab.co.uk> Approved by: hrs (mentor)
OpenPOWER on IntegriCloud