summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Display job status correctly when a pipeline is suspended.tjr2002-06-041-6/+8
|
* Don't build perl if NO_PERL is defined.des2002-06-041-1/+4
|
* Describe finished jobs as "Done", not "Exit" (SUSv3)tjr2002-06-041-1/+5
|
* Don't output `state' and `current' fields for processes that aren'ttjr2002-06-041-3/+5
| | | | leaders in -l option to jobs(1).
* Missing prototypes from previous commit.tjr2002-06-041-0/+3
|
* Correct minor spacing problem in output of jobs -l for pipelines.tjr2002-06-041-1/+1
|
* Quote alias values in the output of the alias(1) builtin so they aretjr2002-06-043-5/+44
| | | | suitable for re-input to the shell (SUSv3)
* Install MD documentations in ${TARGET} directory instead of ${TARGET_ARCH}.nyan2002-06-041-6/+6
|
* Don't forget to include ../Makefile.inc.sobomax2002-06-041-0/+8
|
* Add bmake bits for building GNU tar from src/contrib/tar.sobomax2002-06-046-16/+614
|
* Send our ancienv GNU tar into Attic.sobomax2002-06-0431-16129/+0
| | | | Suggested by: ps
* Add importing/upgrading instructions.sobomax2002-06-041-0/+18
|
* Add razor used for shaving out GNU Tar.sobomax2002-06-041-0/+19
|
* Wrap lines correctly for the `l' command.tjr2002-06-041-1/+1
|
* This commit was generated by cvs2svn to compensate for changes in r97805,sobomax2002-06-04118-0/+48818
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import (trimmed) of GNU Tar version 1.13.25.sobomax2002-06-04118-0/+48818
|
* Respect setting of the COLUMNS environment variable (SUSv3)tjr2002-06-042-1/+14
|
* Ignore empty COLUMNS environment variable. COLUMNS should take precedencetjr2002-06-041-5/+5
| | | | over TTY width found via ioctl() (SUSv3)
* Document the fact that the `l' command uses the COLUMNS environmenttjr2002-06-041-0/+13
| | | | variable (SUSv3)
* Ignore COLUMNS environment variable if it is empty (SUSv3)tjr2002-06-041-1/+1
|
* Respect the setting of the COLUMNS environment variable, use it instead oftjr2002-06-042-6/+29
| | | | the TTY width obtained by ioctl() when set & non-null. (SUSv3)
* Sort options in Description section.tjr2002-06-041-5/+5
|
* Note SUSv2 conformance.tjr2002-06-041-0/+5
|
* confstr() returns (size_t)-1 on failure. Check for this explicitly insteadtjr2002-06-041-1/+1
| | | | of trying to see if an unsigned number is less than zero.
* Add support for non-numeric key lookup via the 'cmds' file, by using the keyjmallett2002-06-041-6/+18
| | | | base as the key number.
* NODEV is defined the same in _KERNEL and !_KERNEL case, so move it out fromjmallett2002-06-041-3/+1
| | | | | | the preprocessor conditional, and remove the now-empty #else. Reviewed by: asmodai
* Err, duh, free(3) doesn't set its argument to NULL... Fix realloc of a freedjmallett2002-06-041-1/+3
| | | | chunk.
* Change some "process id" variables from 'int' to 'pid_t', renaming somegad2002-06-041-28/+31
| | | | | | | | of them to keep better track of which-is-which (multiple variables were named 'pid'). Moved a global pid-variable into the only routine that used it. Net result: fixes two compile-time warnings... MFC after: 2 weeks
* Cosmetic improvements to some of the syslog() calls in here (in some casesgad2002-06-041-35/+44
| | | | | | simply getting the indentation right when the statement wraps). MFC after: 2 weeks
* Fix all the 'return' statements in here to follow style(9).gad2002-06-041-24/+24
| | | | MFC after: 2 weeks
* Avoid checking WIFEXITED and WTERMSIG in some error situations where thegad2002-06-041-3/+6
| | | | | | value in wstatus is not related to the process that we care about. MFC after: 2 weeks
* Use POSIX macros for wait(2)-style status information instead of themike2002-06-036-17/+15
| | | | | deprecated 4.2/4.3BSD wait union. Fix some nearby pid_t/int confusion.
* Add a comment describing a resource leak that occurs during a failure casejeff2002-06-031-0/+3
| | | | in obj_alloc.
* Backout revision 1.2 since it didn't work and replace it with a fix thatjhb2002-06-031-6/+2
| | | | | | actually does work. Ignore errors from kldload(2) if the errno value is EEXIST. It would help if this return value were documented in the kldload(2) manual page.
* Added support for 82545EM and 82546EB based adapters.pdeuskar2002-06-039-1761/+7205
| | | | | | Added Vlan support. MFC after: 1 week
* Use a per-device worker thread to avoid blocking in mdstrategy()iedowse2002-06-031-11/+36
| | | | | | | until the I/O completes. This fixes some easily reproducable deadlocks that occur when using md(4) with GEOM. Reviewed by: phk
* Add a missing ``a''.brian2002-06-031-1/+1
|
* Recognize 0xbe as an uppercase character.tobez2002-06-031-1/+1
| | | | Approved by: ache
* Stop using the depreciated 'union wait' definitions, moving to a moregad2002-06-032-26/+25
| | | | | | | standard handling of wait()-related routines. Submitted by: mike MFC after: 2 weeks
* Make the manpage consistent with the code on the subject of comments, as tojmallett2002-06-031-1/+4
| | | | | | | | not change the code to always do the "GNU" thing, as it's possible people rely on BSD m4(1) traditionally resetting comment characters in case of no arguments to the changecom function. PR: bin/17480 (I think this satisfies the problem report)
* Fix handling of the 'noError' variable. According to the code comments,jhb2002-06-032-24/+22
| | | | | | | | | | | one can set the 'noError' variable to ignore any errors that occur for the next command. However, the code was only unsetting 'noError' when an error actually occurred, so if you set 'noError', the next command completed ok, and the command after that failed, the second command's failure would be ignored. This fixes this by performing the 'noError' check earlier and then unsetting 'noError' after every command that is run. Sponsored by: The Weather Channel
* Add a 'mediaClose' script command to close the open media. An example usejhb2002-06-034-0/+28
| | | | | | | would be to unmount the CD you installed from and prompt the user to eject it before rebooting the machine. Sponsored by: The Weather Channel
* Correct bswap64() prototype.sobomax2002-06-031-1/+1
| | | | | | Submitted by: glewis MFC after: 1 day (assuming that there is re's approval)
* Do not overwrite mm locale files.ru2002-06-031-5/+5
|
* Correct History: cal(1) appeared in V5, not V6.tjr2002-06-031-1/+1
|
* Correct history (again): V3 had a kill command, only it was in section 8,tjr2002-06-031-1/+1
| | | | not 1.
* Correct History: nice(1) appeared in V4.tjr2002-06-031-1/+1
|
* Correct History: time(1) appeared at least as early as V3.tjr2002-06-031-1/+1
|
* Reimplement FILES support using bsd.files.mk with theru2002-06-036-31/+75
| | | | | | | | same set of features as in recently added bsd.incs.mk (FILESGROUPS, accessibility from both bsd.prog.mk and bsd.lib.mk, de-pessimized typical installation path, etc.) New standard targets: buildfiles, installfiles, and files (buildfiles + installfiles).
* Correct History: sync(8) appeared in V4.tjr2002-06-031-1/+1
|
OpenPOWER on IntegriCloud