summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* NGM_NETFLOW_SHOW reports IPv6 flows as well.glebius2012-12-101-5/+1
| | | | Submitted by: Dmitry Luhtionov <dmitryluhtionov gmail.com>
* A number of places in the source tree still reference cuad.* aftereadler2012-12-086-13/+13
| | | | | | | | | | | sio(4) was deprecated by uart(4). s/cuad/cuau/g/ PR: docs/171533 Reviewed by: imp Approved by: cperciva (implicit) MFC after: 3 weeks
* Remove outdated reference to tcp inflight limiting. It was removedandre2012-12-081-47/+1
| | | | | | a long time ago. MFC after: 1 week
* Sync with Library of Congress list.eadler2012-12-081-8/+8
| | | | | | Approved by: cperciva (implicit) Obtained from: DragonflyBSD MFC after: 3 days
* Implemented uma_zone_set_warning(9) function that sets a warning, whichpjd2012-12-071-2/+15
| | | | | | | | | | | | will be printed once the given zone becomes full and cannot allocate an item. The warning will not be printed more often than every five minutes. All UMA warnings can be globally turned off by setting sysctl/tunable vm.zone_warnings to 0. Discussed on: arch Obtained from: WHEEL Systems MFC after: 2 weeks
* Document pffinddomain().kevlo2012-12-072-1/+11
| | | | Reviewed by: glebius
* Add the Programmer Dvorak Keyboard Layouteadler2012-12-063-2/+121
| | | | | | PR: conf/173950 Submitted by: clutton <mbsd@isgroup.com.ua> Approved by: cperciva
* Change the default to 'cru' for speed reasons.eadler2012-12-061-1/+1
| | | | | | | Submitted by: Erik Cederstrand <erik@cederstrand.dk> Reviewed by: imp, toolchain@ Approved by: cperciva MFC after: 2 weeks
* Clean up hardcoded ar(1) flags in the tree to use the global ARFLAGS ineadler2012-12-061-5/+5
| | | | | | | | | | | | share/mk/sys.mk instead. This is part of a medium term project to permit deterministic builds of FreeBSD. Submitted by: Erik Cederstrand <erik@cederstrand.dk> Reviewed by: imp, toolchain@ Approved by: cperciva MFC after: 2 weeks
* Remove hack to emulate effective uid and just use the EUID's name in theeadler2012-12-051-4/+1
| | | | | | | | | first place. I was unaware of this option when originally committing this change. Submitted by: gcooper Approved by: cperciva MFC after: 3 days
* Connect organization.dot to the buildeadler2012-12-051-1/+2
| | | | | Approved by: cperciva MFC after: 3 days
* Fix typo.kib2012-12-041-1/+1
| | | | | Submitted by: bjk MFC after: 3 days
* Fix typos in the previous commit.jkim2012-12-041-2/+2
|
* Tidy up bsd.cpu.mk for X86 CPUs:jkim2012-12-042-36/+49
| | | | | | | | | | | | | | | | | | | | - Do not limit recent processors to "prescott" class for i386 target. There is no reason for this hack because clang is default now. On top of that, it will only grow indefinitely over time. - Add more CPUTYPEs, i.e., "athlon-fx", "core-avx2", "atom", "penryn", and "yonah". Note "penryn" and "yonah" are intentionally undocumented because they are not supported by gcc and marked deprecated by clang. - Add more CPUTYPE aliases, i.e., "barcelona" (-> amdfam10), "westmere" and "nehalem" (-> corei7). Note these are intentionally undocumented because they are not supported by (base) gcc and/or clang. However, LLVM (backend) seems to "know" the differences. Most likely, they were deprecated with other vendor code names and clang did not bother implementing them at all. - Add i686 to MACHINE_CPU for "c3-2" (VIA Nehemiah). Both gcc & clang treat it like an i686-class processor. - Add IDT "winchip2" and "winchip-c6" for completeness (undocumented). - Order processors per make.conf example, i.e., CPU vendors and models. - Tidy up make.conf example, i.e., remove "by gcc" (because we have aliases) and remove "prescott" from AMD64 architecture (because it is not correct).
* Document the interpretation of the negative value of ticks forkib2012-12-041-1/+8
| | | | | | taskqueue_enqueue_timeout(9). MFC after: 3 days
* Remove fictitious support for 80386-class CPUs from bsd.cpu.mk and make(1).jkim2012-12-032-28/+23
| | | | | | It was removed from head more than 8 years ago (see r137784 and r137785). Reviewed by: imp, delphij, dim
* Merge a number of changes required to hook up OpenBSM 1.2-alpha2'srwatson2012-12-011-1/+2
| | | | | | | | | | | | | | | | | | | auditdistd (distributed audit daemon) to the build: - Manual cross references - Makefile for auditdistd - rc.d script, rc.conf entrie - New group and user for auditdistd; associated aliases, etc. The audit trail distribution daemon provides reliable, cryptographically protected (and sandboxed) delivery of audit tails from live clients to audit server hosts in order to both allow centralised analysis, and improve resilience in the event of client compromises: clients are not permitted to change trail contents after submission. Submitted by: pjd Sponsored by: The FreeBSD Foundation (auditdistd)
* Generalize make.conf man page: use "cc" instead of "gcc"eadler2012-11-291-4/+4
| | | | | | | PR: misc/173604 Submitted by: Dan McGregor <dan.mcgregor@usask.ca> Approved by: bcr (mentor) MFC after: 3 days
* - Update organization.dot to reflect that attilio resigned from corepgj2012-11-281-1/+1
| | | | Approved by: core (implicit)
* Add my mentor relationships to committers-ports.dotbar2012-11-251-0/+3
| | | | Approved by: flo (mentor)
* Catch up with r243046. KTR buffer can be changed at runtime.kevlo2012-11-231-1/+1
|
* Remove no longer needed quirk.hselasky2012-11-231-2/+0
| | | | Submitted by: Mark Johnston
* [mdoc] remove hard sentence breaks.pluknet2012-11-221-3/+6
| | | | MFC after: 3 days
* core(5) references sysctl debug.num_cores, but it is really debug.ncores.pluknet2012-11-221-2/+2
| | | | | PR: docs/173831 MFC after: 1 week
* If .PARSEDIR is defined we have bmake, and CTFCONVERT_CMD can be empty.sjg2012-11-221-1/+1
| | | | | PR: 172440 Approved by: marcel (mentor)
* INSTALL_AS_USER: output of id -un will never match 0 so use id -usjg2012-11-221-2/+5
| | | | | | and USER for BINOWN etc. Approved by: marcel (mentor)
* Do not expose LIBCXXRT and LIBCPLUSPLUS in bsd.libnames.mk, ifdim2012-11-201-0/+2
| | | | | | | WITHOUT_LIBCPLUSPLUS is specified. Submitted by: Garrett Cooper <yanegomi@gmail.com> MFC after: 3 days
* Clean up and update comments for CPUTYPE.jkim2012-11-191-11/+16
| | | | Requested by: rdivacky
* Add x86 CPUs supported by clang on head.jkim2012-11-191-9/+35
| | | | | Reviewed by: arch (silence) X-MFC: r242624
* Improve grammar.bjk2012-11-181-7/+9
| | | | Approved by: hrs (mentor)
* Modernize parts of the ports.7 manual page.eadler2012-11-181-15/+2
| | | | | Approved by: bcr (mentor) MFC after: 3 days
* Install bsd.progs.mk, needed by bsd.test.mk and thus by atf.test.mk.marcel2012-11-171-0/+1
|
* Correct spelling of "lily" [0]eadler2012-11-161-3/+3
| | | | | | | | | Correct spelling of Camellia PR: misc/173655 [0] Submitted by: John Ryan <john@shiftregister.net> [0] Approved by: cperciva MFC after: 1 week
* Remove trailing whitespace.joel2012-11-161-1/+1
|
* o Remove meaningless PROTOCOLS section.glebius2012-11-161-43/+65
| | | | | | | | | | | | | | | o Describe passing file descriptors as separate section. - Descriptors can be passed through any protocol of the UNIX family, not SOCK_STREAM and SOCK_SEQPACKET only. [1] o Describe socket options as separate section. - Move LOCAL_PEERCRED option to this section. - Describe struct xucred. - In LOCAL_CREDS section mention that credentials are passed only on the first read on non-datagram sockets. o Xref all mentioned system calls. Noticed by: Igor Sysoev [1]
* Remove trailing whitespace.joel2012-11-161-1/+1
|
* M_USE_RESERVE is no longer deprecated. It is once again supported.alc2012-11-161-8/+7
| | | | Reviewed by: kib
* Move detailed description of BLOCKSIZE to getbsize(3).grog2012-11-161-7/+4
| | | | MFC after: 2 weeks.
* Remove quite a bit of stale data from the tuning.7eadler2012-11-161-265/+24
| | | | | | | | While here fix some style issues. Submitted by: many (via the SystemTuning wiki page) Approved by: bcr (mentor) MFC after: 3 days
* Remove trailing whitespace.joel2012-11-151-1/+1
|
* Some software, notably dialog(1), can understand back-tab, which iseadler2012-11-151-1/+1
| | | | | | | | | | | | | typically bound to Shift-Tab. syscons produces ^]]Z for Shift-Tab, like many VT100-like terminal (emulators). The plain xterm does not produce this sequence, but ^I for both Tab and Shift-Tab. PR: conf/162787 PR: bin/151229 Submitted by: Stefan Bethke <stb@lassitu.de> Submitted by: Bruce Cran <bruce@cran.org.uk> Approved by: cperciva MFC after: 3 days
* Mention the IEEE 802.1AX.kevlo2012-11-141-3/+3
| | | | Reviewed by: thompsa
* Remove description of deprecated IP fragment checksum support.andre2012-11-131-56/+1
| | | | | | | | Since SMPng it wasn't really supported anymore and if it worked then only by chance. Only very few drivers ever supported it. Discussed with: yongari MFC after: 2 weeks
* Updates for netgraph node manual pages.joel2012-11-1351-401/+398
| | | | | Discussed with: glebius Submitted by: Mamontov Roman <mr.xanto@gmail.com>
* - Lowercase a cross reference to make.pluknet2012-11-131-3/+3
| | | | | | - Sort SEE ALSO cross references. MFC after: 3 days
* Avoid an ambiguous reference to mtx_lock(9).pluknet2012-11-131-1/+1
| | | | MFC after: 3 days
* Correct rmlock(9) xref and add a missing comma.pluknet2012-11-131-2/+2
|
* ICMPV6_FILTER should read ICMP6_FILTER.delphij2012-11-081-2/+2
| | | | | Submitted by: Frédéric Perrin <frederic.perrin resel.fr> MFC after: 2 weeks
* Add ATF and reformat to ease reviewssjg2012-11-071-13/+43
| | | | Approved by: marcel (mentor)
* Enable ATF testing.sjg2012-11-073-0/+232
| | | | | Submitted by: Garrett Cooper Approved by: marcel (mentor)
OpenPOWER on IntegriCloud