summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Default device not longer uses the "r" raw prefix.obrien2000-04-261-1/+1
|
* Add braces to avoid ambiguity in a nested conditional (silences a gccsheldonh2000-04-261-1/+2
| | | | warning).
* Unbreak for the case where ``make obj'' was run first.obrien2000-04-261-0/+1
|
* Hello, getconf. This is a slight reinvention of thewollman2000-04-268-0/+689
| | | | | wheel^H^H^H^H^HPOSIX.2 and X/Open utility, and rather more complicated than necessary.
* Fix excessive use of parenthesis in previous commit.sheldonh2000-04-252-2/+2
| | | | Requested by: bde
* Use Garrett's new (clearer) names.markm2000-04-231-7/+7
|
* Remove redundat extern declarationcracauer2000-04-201-1/+2
|
* Change <event.h> --> <sys/event.h>jlemon2000-04-181-1/+1
|
* No such thing like `southamericarand' when Rand is the currency of ZA...joerg2000-04-181-1/+1
|
* * I goofed and didn't break sentances the right way.obrien2000-04-181-14/+16
| | | | | | | * Make the option arguments format better * Fix mispelling Submitted by: ru
* Change our ELF binary branding to something more acceptable to the Binutilsobrien2000-04-184-43/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | maintainers. After we established our branding method of writing upto 8 characters of the OS name into the ELF header in the padding; the Binutils maintainers and/or SCO (as USL) decided that instead the ELF header should grow two new fields -- EI_OSABI and EI_ABIVERSION. Each of these are an 8-bit unsigned integer. SCO has assigned official values for the EI_OSABI field. In addition to this, the Binutils maintainers and NetBSD decided that a better ELF branding method was to include ABI information in a ".note" ELF section. With this set of changes, we will now create ELF binaries branded using both "official" methods. Due to the complexity of adding a section to a binary, binaries branded with ``brandelf'' will only brand using the EI_OSABI method. Also due to the complexity of pulling a section out of an ELF file vs. poking around in the ELF header, our image activator only looks at the EI_OSABI header field. Note that a new kernel can still properly load old binaries except for Linux static binaries branded in our old method. * * For a short period of time, ``ld'' will also brand ELF binaries * using our old method. This is so people can still use kernel.old * with a new world. This support will be removed before 5.0-RELEASE, * and may not last anywhere upto the actual release. My expiration * time for this is about 6mo. *
* Change tail to use kqueue/kevent to obtain a notification whenjlemon2000-04-161-22/+51
| | | | the file changes (when doing tail -{f|F}).
* Do not pull in <sys/select.h>, it isn't required.jlemon2000-04-161-1/+2
|
* #include <errno.h> where needed. Kill extern int errno;.imp2000-04-1416-21/+32
| | | | Minor warnings in tip corrected.
* Do not issue a warning when chflags() fails with EOPNOTSUPP.sheldonh2000-04-132-2/+3
| | | | | PR: 17875 Submitted by: Bjoern Fischer <bfischer@Techfak.Uni-Bielefeld.DE>
* Use an MD5 checksum to test for file changes; the previous methodsheldonh2000-04-122-3/+10
| | | | | | | | | of using file mtimes could result in chpasss(1) erroneously detecting that no changes were made for non-interactive edits. PR: 4238 Reported by: Jens Schweikhardt <schweikh@noc.dfn.de> Submitted by: Daniel Hagan <dhagan@cs.vt.edu>
* Add a new options: -m enables searching for memory-mapped files.green2000-04-052-3/+81
| | | | | | | | It is not default because it's an expensive option by nature, making the search take 2-3 times as long. PR: 17555 Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
* Fixed prototype for setflags(). setflags() returns int, not u_long,bde2000-04-041-1/+1
| | | | | | and "extern" in function prototypes is a style bug. The type mismatch broke chflags(1) on i386's with 64-bit longs and may have broken it on alphas.
* Document that the flags can be specified as an octal number.jdp2000-04-031-1/+2
|
* The FreeBSD/Sparc64 port will also have an __ELF_WORD_SIZE of 64.steve2000-04-022-2/+2
|
* Fix a bug in rsh that caused the remote process to hang waiting onbsd2000-04-011-0/+2
| | | | | | | input even if the '-n' flag to rsh is used. The write side of the socket should be closed to allow the remote process to see EOF. Submitted by: Brad Chisholm <sasblc@unx.sas.com>
* Instead of checking for a non-zero return value from kvm_read, checknectar2000-03-311-1/+1
| | | | whether we read as many bytes as we expected.
* While I'm in here, remove an unused variable.sheldonh2000-03-301-1/+1
| | | | Submitted by: Nathan Ahlstrom <nrahlstr@winternet.com>
* Fix buffer overflow copying the ``kernel'' command-line argument intosheldonh2000-03-291-2/+4
| | | | | | | buffers. The buffers have been resized from the irrelevant BUFSIZ to the more relevant MAXPATHLEN + 1. Reported by: Mike Heffner <spock@techfour.net>
* Cross-reference ldd(1) in rtld(1) and vice versa.sheldonh2000-03-281-1/+2
|
* Get rid of hard sentence breakcharnier2000-03-272-3/+5
| | | | Asked by: Sheldon
* More rusers to .Nm convertioncharnier2000-03-271-5/+9
| | | | Some of them found by: Sheldon
* Quote with .Dqcharnier2000-03-271-4/+12
| | | | Asked by: Sheldon
* Fixed misspelling of DPADD as DPADDA.bde2000-03-271-3/+2
| | | | Fixed some misformattings.
* Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in mostbde2000-03-271-2/+2
| | | | | | | cases and broke the world in some cases. Fixed style bugs for DPADD and LDADD (don't use += for variables defined only once).
* Do not overwrite files when the -i option is specified!sheldonh2000-03-271-10/+14
| | | | | PR: 17476 Reported by: Jonathan Chen <jon@spock.org>
* Fix a mistakenly broken sentence. The mistake was made easy by thesheldonh2000-03-271-3/+4
| | | | | | confusing use of a comma to separate two sentences. :-) Reported by: bp
* Y2K fix. at(1) would die with 'garbled time' when assign_date() wassheldonh2000-03-271-20/+22
| | | | | | | | | | | | | pased a year > 99. This change fixes the conversion of 2-digit years into tm_year format. This change is differs from the OpenBSD fix because of differences in our assign_date(). PR: 15872 Reported by: "Crist J. Clark" <cjclark@home.com> Submitted by: "Sergey N. Voronkov" <serg@dor.zaural.ru> Obtained from: OpenBSD
* Add DIAGNOSTICS section name. Spellingcharnier2000-03-263-10/+13
|
* Add DIAGNOSTICS section namecharnier2000-03-268-13/+14
|
* Use .Xrcharnier2000-03-261-2/+2
|
* Add usage().charnier2000-03-261-3/+9
|
* Do not dot terminate list of referencescharnier2000-03-261-1/+1
|
* remove unknown OPTIONS section name. Getopt returns -1.charnier2000-03-262-2/+2
|
* Add section number to .Xr references. Enumerate flags the standard way.charnier2000-03-261-8/+9
|
* Put argument under .Ar.charnier2000-03-261-1/+2
|
* Add section number to .Xr. Put arguments under .Ar.charnier2000-03-261-3/+7
|
* Do not dot terminate err() string. Cross reference using .Xrcharnier2000-03-262-10/+10
|
* Use .Pacharnier2000-03-261-2/+3
|
* Remove incorrect use of .Nm. Wrap long lines, Unwrap short linescharnier2000-03-262-13/+12
| | | | Options: -> The following options are available:
* Put flags under .Fl. Add DIAGNOSTICS section namecharnier2000-03-261-3/+7
|
* Sync SYNOPSIS and usage() string.charnier2000-03-262-4/+5
|
* Add missing dotscharnier2000-03-261-5/+5
|
* Move RCS tags after copyrightcharnier2000-03-261-5/+3
| | | | Add DIAGNOSTICS section name
* Add DIAGNOSTICS section namecharnier2000-03-264-12/+13
|
OpenPOWER on IntegriCloud