summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* mdoc: sort sections into conventional order.joel2012-05-261-21/+21
|
* - Only use multi-threading for large filesgabor2012-05-257-23/+90
| | | | | | | | - Do not use mmap() by default; it can be enabled by --mmap - Add some minor optimizations for -u - Update manual page according to the changes Submitted by: Oleg Moskalenko <oleg.moskalenko@citrix.com>
* Fix resolving symbol names on ARM.gber2012-05-251-0/+6
| | | | | | | | | | | On ARM, binutils are adding '$a' symbols in the symbol table for every function (in addition to normal symbol). When gprof(1) looks up symbol name, it often reads '$a' instead of proper function name, because it find it first. With this fix, when read symbol name begins with '$' and previous symbol has the same address, it will use previous symbol name (which is proper function name). Obtained from: Semihalf
* Hook up mkulzma to the build.jpaetzel2012-05-241-0/+1
| | | | MFC after: 3 days
* MFprojects/zfsd:mav2012-05-241-0/+2
| | | | | | | | | | | Revamp the CAM enclosure services driver. This updated driver uses an in-kernel daemon to track state changes and publishes physical path location information\for disk elements into the CAM device database. Sponsored by: Spectra Logic Corporation Sponsored by: iXsystems, Inc. Submitted by: gibbs, will, mav
* Fixes to man8 groff mandoc style, usage mistakes, or typos.wblock2012-05-241-2/+2
| | | | | | | PR: 168016 Submitted by: Nobuyuki Koganemaru Approved by: gjb MFC after: 3 days
* Allow the socket list to be limited to a specific jail id.thompsa2012-05-242-2/+35
| | | | No objections: current@
* Fix error reported by mandoc.joel2012-05-231-2/+1
|
* commandline -> command linedelphij2012-05-221-2/+2
| | | | MFC after: 1 week
* Fix world after byacc import:bapt2012-05-226-7/+0
| | | | | | | | - old yacc(1) use to magicially append stdlib.h, while new one don't - new yacc(1) do declare yyparse by itself, fix redundant declaration of 'yyparse' Approved by: des (mentor)
* Import byacc from invisible island, it brings us lots of compatibilities withbapt2012-05-2129-13032/+11
| | | | | | | | | | | | | bison, keeping full compatibility with our previous yacc implementation. Also bring the ability to create reentrant parser This fix bin/140309 [1] PR: bin/140309 [1] Submitted by: Philippe Pepiot <ksh@philpep.org> [1] Approved by: des (mentor) MFC after: 1 month
* Bring DPADD in sync with LDADD.marcel2012-05-192-2/+2
|
* Don't cast inode number or file size down to long or unsigned.gleb2012-05-181-1/+1
| | | | | | | Since ino_t size is about to change to 64-bits, casts to long would truncate 64-bit numbers on 32-bit archs. Sponsored by: Google Summer of Code 2011
* Fix a typo that crept in.gjb2012-05-181-1/+1
| | | | | | Pointyhat: gjb (myself) Spotted by: hrs MFC after: 2 days (minor change)
* - Fix -o option that was broken by my clang compile fixgabor2012-05-171-3/+2
| | | | Submitted by: Oleg Moskalenko <oleg.moskalenko@citrix.com>
* Allow to specify strftime(3) format for process start end exit times.kib2012-05-172-5/+36
| | | | | Submitted by: Andrey Zonov <andrey zonov org> MFC after: 1 week
* Add support for -z option for reading operations. It allows to not requestmav2012-05-162-6/+7
| | | | current values from device, but only receive changes.
* - Eliminate initializations if global variables. Compilers are notgabor2012-05-145-17/+17
| | | | | | required to optimize these so it may result in larger binary size. Pointed out by: kib
* - Update catalogsgabor2012-05-142-6/+18
|
* - Fix build with clanggabor2012-05-142-22/+19
|
* Minor mdoc nits.joel2012-05-133-5/+5
|
* Remove end of line whitespace.joel2012-05-121-1/+1
|
* - Hook up BSD sort to the build. By default, it will be installed asgabor2012-05-111-0/+1
| | | | | | "bsdsort" and GNU sort will be the default "sort". When WITH_BSD_SORT is set, BSD sort will be the default "sort" and GNU sort will be installed as "gnusort".
* Add a BSD-licensed sort rewrite that was started by me and later completedgabor2012-05-1118-0/+7795
| | | | | | | | | with the major functionality and optimizations by Oleg Moskalenko. It is compatible with the latest version of POSIX and the current GNU sort version that we have in base. Beside this, it implements all the functionality introduced in later versions of GNU sort. For now, it will be installed as "bsdsort", keeping GNU sort as the default sort implementation.
* Document the unzip(1) '-Z' option implemented in r234206.gjb2012-05-111-1/+11
| | | | | Submitted by: swills (via hacker lounge) MFC after: 3 days
* General mdoc(7) and typo fixes.gjb2012-05-1013-16/+16
| | | | | | PR: 167696 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days
* Make is part of the bootstrap path, so we need to guard against thisimp2012-05-091-1/+1
| | | | | not being defined. Otherwise we don't make a new make when the old make is incompatible.
* Always define LD_32_PRELOAD so it works for 32 bits binaries onjlh2012-05-081-1/+12
| | | | | | | | | | | | 64 bits platforms. Let rtld(1) decide if it needs to honor it or not. While here, fix a small bug in error reporting when asprintf(3) returns an error. Submitted by: kib Reviewed by: kib (mentor) MFC after: 1 week
* Upgrade our copy of llvm/clang to r155985, from upstream's release_31dim2012-05-031-1/+0
| | | | | | | branch. This brings us very close to the 3.1 release, which is planned for May 14th. MFC after: 2 weeks
* Respect mathematical operation order piority with the exponent gnu extensionbapt2012-04-301-2/+2
| | | | | Obtained from: OpenBSD Approved by: des (mentor)
* Add src.conf option WITH_SHARED_TOOLCHAIN to enable building thekib2012-04-292-0/+8
| | | | | | | | toolchain binaries as dynamically linked. Option is disabled by default. Reviewed by: ru (previous version) MFC after: 2 weeks
* Use standard getopt(3) error message.jlh2012-04-291-6/+1
| | | | | Submitted by: jilles Approved by: kib (mentor)
* Import stdbuf(1) and the shared library it relies on.jlh2012-04-284-0/+229
| | | | | | | | | | | | | | This tool changes the default buffering behaviour of standard stdio streams. It only works on dynamic binaries. To make it work for static ones it would require cluttering stdio because there no single entry point. PR: 166660 Reviewed by: current@, jhb Approved by: kib (mentor) MFC after: 1 week
* Add my birthday and place of birth.jlh2012-04-231-0/+1
| | | | Approved by: kib (mentor)
* Remove duplicate -l description.brueffer2012-04-221-5/+1
| | | | | Submitted by: Rainer Hurling <rhurlin@gwdg.de> MFC after: 1 week
* The .Fx macro needs the version number be in its own word separated bydelphij2012-04-221-1/+1
| | | | a space. This change have no visible effect for rendering.
* Include the associated wait channel message for context switch ktracejhb2012-04-202-4/+15
| | | | | | | records. kdump supports both the old and new messages. Submitted by: Andrey Zonov andrey zonov org MFC after: 1 week
* Update file(1) to version 5.11.obrien2012-04-191-1/+1
|\
* | Add my birth date/place to the calendar as new committer.dteske2012-04-181-0/+1
| | | | | | | | Approved by: emaste (mentor)
* | Fix string buffer overflow when preparing the line of output.kib2012-04-181-2/+2
| | | | | | | | | | | | PR: bin/161739 Submitted by: Jeremy Chadwick <freebsd jdc parodius com> MFC after: 1 week
* | Upgrade our copy of llvm/clang to trunk r154661, in preparation of thedim2012-04-1623-47/+77
| | | | | | | | | | | | | | upcoming 3.1 release (expected in a few weeks). Preliminary release notes can be found at: <http://llvm.org/docs/ReleaseNotes.html> MFC after: 2 weeks
* | Add myself to the calendarmadpilot2012-04-151-0/+1
| | | | | | | | Approved by: creees (mentor)
* | Correct my name in the copyright statement.des2012-04-152-2/+2
| |
* | Improve m4 compatibility with GNU m4 extension ** (exponent)bapt2012-04-153-3/+7
| | | | | | | | | | Submitted by: Marc Espie (espie@OpenBSD.org) Approved by: des@ (mentor)
* | Eliminate an unused parameter of static method igmp_stats_live_old().delphij2012-04-131-2/+2
| | | | | | | | MFC after: 1 month
* | Belatedly add my entry to the calendar file, now that 30 is here and gone.gjb2012-04-131-0/+1
| |
* | Partially implement zipinfo (-Z) support.kevlo2012-04-131-38/+71
| | | | | | | | | | | | | | | | This fixes some test failures seen with perl 5.12 and 5.14. PR: bin/166895 Submitted by: swills MFC after: 3 days
* | Parenthesize args in yyless() and unput() replacement textschweikh2012-04-101-3/+3
| | | | | | | | | | | | so they are safer when used with expressions. MFC after: 1 week
* | Since truss also uses kdump's mkioctls script, pass the value of ${CPP}dim2012-04-091-1/+1
| | | | | | | | | | | | there too, similar to r234058. MFC after: 1 week
* | In kdump's mkioctls script, use '${CPP}' instead of hardcodedly usingdim2012-04-092-2/+2
| | | | | | | | | | | | | | 'gcc -E'. This fixes building when WITH_CLANG_IS_CC is in effect. Report by: Niclas Zeising <zeising@daemonic.se> MFC after: 1 week
OpenPOWER on IntegriCloud