summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Remove CVS from the base system.eadler2013-06-153-13/+1
| | | | | | Discussed with: many Reviewed by: peter, zi Approved by: core
* Flag recursive make targets with .MAKE (has no effect on fmake)sjg2013-06-141-4/+4
| | | | | | | make -n will still exectute such targets make -N will not. Reviewed by: obrien
* We cannot remove the _+_ trick, until old make is completely deprecated.sjg2013-06-141-1/+7
| | | | | | | | | But we don't want to set it to + for bmake since it breaks make -N which is used to supress the normal handling of targets marked with .MAKE (which seems broken in fmake and might be why _+_ was introduced). Add some comments to explain what's gong on. Reviewed by: obrien
* Fix and improve filemon(4) example:pluknet2013-06-141-8/+4
| | | | | | | | | - remove return statements from void function [1] - include missing header - use O_CLOEXEC instead of separate fcntl() calls PR: docs/179459 [1] MFC after: 1 week
* The functions are called pci_{msi,msix}_count(), not pci_count_{msi,msix}().markj2013-06-141-4/+4
| | | | MFC after: 3 days
* Add a missing comma.jkim2013-06-131-1/+1
|
* - Document GCC support for AMD Family 10h processors (amdfam10).jkim2013-06-131-5/+5
| | | | - Document Clang support for AMD Jaguar processors (btver2).
* Add a new CPUTYPE supported by Clang 3.3 for AMD Jaguar processors (btver2).jkim2013-06-131-0/+4
|
* Merge latest NetBSD changes.eadler2013-06-111-37/+47
| | | | | | | | | | | This adds some new NetBSD releases and makes some simple formatting changes. With this commit NetBSD and FreeBSD should have identical files. DragonflyFBSD has the version immediately prior to this commit. When committing to this file please try to coordinate with all three groups. Submitted by: Alan Barrett <apb@cequrux.com>
* pthread_testcancel(3): Update list of cancellation points.jilles2013-06-111-4/+37
| | | | | This should be a fairly complete list of cancellation points in libc, libthr and librt, including standard as well as non-standard functions.
* Add :ifname modifier to specify interface-specific routes intohrs2013-06-091-2/+10
| | | | | | | | | | | | | | | | | {,ipv6_}static_routes and rc.d/routing. For example: static_routes="foo bar:em0" route_foo="-net 10.0.0.0/24 -gateway 192.168.2.1" route_bar="-net 192.168.1.0/24 -gateway 192.168.0.2" At boot time, all of the static routes are installed as before. The differences are: - "/etc/rc.d/netif start/stop <if>" now configures static routes with :<if> if any. - "/etc/rc.d/routing start/stop <af> <if>" works as well. <af> cannot be omitted when <if> is specified, but a keyword "any" or "all" can be used for <af> and <if>.
* Minor markup.pluknet2013-06-081-2/+2
|
* Update locking scheme, mostly transition from sched_lock.pluknet2013-06-081-22/+14
|
* Import Kevin Lo's port of urtwn(4) from OpenBSD. urtwn(4) is a driver for therpaulo2013-06-082-0/+141
| | | | | | | | | | | | | | | | | | Realtek RTL8188CU/RTL8192CU USB IEEE 802.11b/g/n wireless cards. This driver requires microcode which is available in FreeBSD ports: net/urtwn-firmware-kmod. Hiren ported the urtwn(4) man page from OpenBSD and Glen just commited a port for the firmware. TODO: - 802.11n support - Stability fixes - the driver can sustain lots of traffic but has trouble coping with simultaneous iperf sessions. - fix debugging MFC after: 2 months Tested by: kevlo, hiren, gjb
* Add WITH_DEBUG_FILESemaste2013-06-071-1/+9
| | | | | makeman currently generates a src.conf that claims every option also enforces WITHOUT_BIND_UTILS, so I applied this section by hand.
* Add a new knob WITH_DEBUG_FILES to control the building of standaloneemaste2013-06-074-17/+98
| | | | | | | | | | | | | | | | debug files for userland programs and libraries. The "-g" debug flag is automatically applied when WITH_DEBUG_FILES is set. The debug files are now named ${prog}.debug and ${shlib}.debug for consistency with other systems and documentation. In addition they are installed under /usr/lib/debug, to simplify the process of installing them if needed after a crash. Users of bsd.{prog,lib}.mk outside of the base system place the standalone debug files in a .debug subdirectory. GDB automatically searches both of these directories for standalone debug files. Thanks to everyone who contributed changes, review, and testing during development.
* Override bmake's default MAKEFILE_PREFERENCEsjg2013-06-071-1/+1
|
* FreeBSD 8.4 added.pluknet2013-06-071-10/+12
|
* Add myself to committers-src.dot, and note kib is my mentor.gjb2013-06-041-0/+2
| | | | Approved by: kib (mentor)
* mdoc: convert .Fd to .In, which is much nicer.joel2013-06-041-1/+1
|
* cxgbe(4): t4fw_cfg must be explicitly loaded if the driver is beingnp2013-06-031-1/+2
| | | | | | | loaded via loader.conf. Submitted by: jwd@ MFC after: 3 days
* Switch to 2-clause licenseemaste2013-06-031-5/+0
| | | | Approved by: luigi@
* Add my entry.crees2013-05-291-0/+3
| | | | Approved by: bcr, gjb (mentors)
* Remove references to CVS_UPDATE and SUP_UPDATE to catch up with r251084.gjb2013-05-281-66/+1
| | | | | MFC after: 1 month X-MFC-With: r251084, r251085
* mdoc: silence a few mandoc lint warnings.joel2013-05-281-3/+2
|
* s/recieve/receiveschweikh2013-05-261-1/+1
|
* Rework the comment I initially wrote when SHLIB_LDSCRIPT was introduced.jlh2013-05-251-9/+14
| | | | | | The build system is really intricate and I had a hard time to remind the whole picture even when reading my own words. This one will hopefully be better.
* Mention the "nojailvnet" keyword.jamie2013-05-241-1/+3
| | | | MFC after: 3 days
* Driver 'aacraid' added. Supports Adaptec by PMC RAID controller families ↵achim2013-05-242-0/+140
| | | | | | Series 6, 7, 8 and upcoming products. Older Adaptec RAID controller families are supported by the 'aac' driver. Approved by: scottl (mentor)
* Don't depend on the touch binary being present.ed2013-05-222-4/+4
| | | | We can simply create an empty file by doing a no-op and redirecting stdout.
* Remove reference to removed !MPSAFE filesystem supportemaste2013-05-221-2/+2
|
* Fix a copy-and-paste typo.delphij2013-05-221-1/+1
|
* Regenerate with manual fixup for WITH_LDNS_UTILS inheriting WITHOUT_BIND_UTILS.delphij2013-05-221-18/+24
|
* NetBSD 6.1 added.maxim2013-05-201-1/+2
|
* Build bmake by default.sjg2013-05-161-1/+1
| | | | | | | If someone explicitly builds usr.bin/make while MK_BMAKE==yes, install it as 'fmake'. Reviewed by: brooks
* Add Qlogic 10Gigabit Ethernet & CNA Adapter Driver Version 3.10.10 fordavidcs2013-05-152-0/+94
| | | | | | | QLogic 8300 Series Adapters Submitted by: David C Somayajulu (davidcs@freebsd.org) QLogic Corporation Approved by: George Neville-Neil (gnn@freebsd.org)
* Document WITHOUT_CROSS_COMPILER and WITHOUT_FORMAT_EXTENSIONS.brooks2013-05-151-0/+10
|
* Add support for an external cross compiler. The cross compiler isbrooks2013-05-151-0/+1
| | | | | | | | | | | | | | | | | | | | specified by passing the XCC, XCXX, and XCPP variables (corresponding to CC, CXX, and CPP) to buildworld/buildkernel. The compiler must be clang or be configured to target the appropriate architecture. To speed build times, if XCC is an absolute path or WITHOUT_CROSS_COMPILER is defined then no cross compiler will be built during the cross-tools stage. Limited documentation of this feature can currently be found at: https://wiki.freebsd.org/ExternalToolchain This functionality should be considered experimental and is subject to change without notice. Sponsored by: DARPA, AFRL Discussed with: imp, sjg
* Add a new option WITHOUT_FORMAT_EXTENSIONS to disable flags related tobrooks2013-05-151-0/+1
| | | | | | | checking our kernel printf extensions. This is useful to allow compilers without these extensions to build kernels. Sponsored by: DARPA, AFRL
* mdoc sweepjoel2013-05-133-19/+45
|
* mdoc sweep.joel2013-05-123-3/+5
|
* Fix several typoseadler2013-05-121-1/+1
| | | | | | PR: kern/176054 Submitted by: Christoph Mallon <christoph.mallon@gmx.de> MFC after: 3 days
* Add the letter 'x' to the font iso05-8x16.fnteadler2013-05-121-1/+1
| | | | | | PR: 169797 Submitted by: Takefu <takefu@airport.fm> MFC after: 3 days
* Fxi a bunch of typos.eadler2013-05-102-2/+2
| | | | | PR: misc/174625 Submitted by: Jeremy Chadwick <jdc@koitsu.org>
* Add the letter 'q' to the font iso05-8x16.fnteadler2013-05-101-1/+1
| | | | | | | PR: 72585 PR: 169797 Submitted by: Takefu <takefu@airport.fm> Submitted by: Satoshi KImura <satosi.kimura@nifty.ne.jp>
* Start sentences on new lines.eadler2013-05-091-2/+4
|
* Minor improvements.joel2013-05-081-4/+6
|
* s/Numer/Number/sbruno2013-05-081-1/+1
| | | | Submitted by: Jeremy Chadwick <jdc@koitsu.org>
* Manual page for acpi_rapidstart(4) driver.takawata2013-05-081-0/+82
| | | | | | | | | | | | | | | ---- > Description of fields to fill in above: 76 columns --| > PR: If a GNATS PR is affected by the change. > Submitted by: If someone else sent in the change. > Reviewed by: If someone else reviewed your modification. > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > Security: Vulnerability reference (one per line) or description. > Empty fields above will be automatically removed. AM acpi_rapidstart.4
* By request, add an arrow from NetBSD-0.8 to FreeBSD-1.0.eadler2013-05-071-17/+17
| | | | | | | While here, add a few more NetBSD versions to the tree itself. Submitted by: Alan Barrett <apb@cequrux.com> Submitted by: Thomas Klausner <wiz@netbsd.org>
OpenPOWER on IntegriCloud