summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Starting with 5.0-R, do not support `.' as a owner / group delimiter.obrien2001-05-311-1/+0
|
* Cross reference pkg_update(1).eric2001-05-311-0/+1
| | | | Approved by: murray
* Support a range of registers to read.imp2001-05-312-10/+38
| | | | | | | | | eg pciconf -r pci0:10:0 0:0xff and keep the output of the old singleton the same. Reviewed by: audit@, dd MFC after: 10 days
* Fix typos and modify obscure wordingtom2001-05-311-5/+5
| | | | MFC after: 5
* Fixed the bug from the previous revision.ru2001-05-311-1/+1
| | | | | | | | | | | | | | | ``chown -h owner symlink'' did not set the symlink's owner if the file the symlink points to already had that owner: # ls -l alink afile -rw-r--r-- 1 nobody ru 0 May 31 14:14 afile lrwxr-xr-x 1 root ru 5 May 31 14:14 alink -> afile # ./chown -h -v nobody alink # ls -l alink afile -rw-r--r-- 1 nobody ru 0 May 31 14:14 afile lrwxr-xr-x 1 root ru 5 May 31 14:14 alink -> afile Similarly for chgrp(1) and chmod(1).
* Recently, other BSDs had faith support in inetd. Though our inetd hasume2001-05-311-1/+7
| | | | | | | | it already, their syntax is not compatible with ours. It will confuse users. So, we have compatibility with their syntex. Approved by: dwmalone Obtained from: NetBSD
* Minor style(9) tweak: if ( instead of if(.imp2001-05-311-3/+3
|
* Add suggested parens around truth value.imp2001-05-311-1/+1
|
* From the PR:imp2001-05-301-4/+2
| | | | | | | | | | | | | The PCCard daemon can hang indefinately while reading its configuration file. If the last line of the file is a comment line that does not end in a newline, the program goes into an infinite loop searching for the non-existent newline. This fix, provided by the PR, will allow files ending without a newline to be read without hanging. Submitted by: Crist J. Clark <cjclark@alum.mit.edu> PR: bin/25791
* Fix an alignment errorbrian2001-05-301-5/+10
| | | | | | PR: 27766 Submitted by: Sudish Joseph <sudish@mindspring.com> MFC after: 2 weeks
* Add the last of the compatibility mods from openbsd. Neatly, thedougb2001-05-301-9/+14
| | | | | | | | | "install && rm" change fits in with the new FreeBSD default of copy instead of move for install. Changing the order of the deletion of the spurious password files doesn't affect FreeBSD functionality, but it's done in such a way as not to matter. Obtained from: Christian Weisgerber <naddy@mips.inka.de>
* Change to spell erasing right.sos2001-05-301-6/+7
| | | | PR 26306 but implemented differently by me.
* Catch up to new include paths.msmith2001-05-301-2/+2
| | | | Submitted by: walt <wsheets@att.net>
* Remove MFSphk2001-05-291-4/+1
|
* Add section "CONTRIBUTORS" and move nik and sobomax there, since we are notsobomax2001-05-291-0/+2
| | | | really "AUTHORS".
* Since the netexport struct was centralised to 'struct mount',iedowse2001-05-291-3/+4
| | | | | | | | | | | | | attempting to remove nonexistant exports with MNT_DELEXPORT returns an error; before this change it always succeeded. This caused mountd(8) to log "can't delete exports for /whatever" warnings. Change the error code from EINVAL to a more specific ENOENT, and make mountd ignore this error when deleting the export list. I could have just restored the previous behaviour of returning success, but I think an error return is a useful diagnostic. Reviewed by: phk
* - Syncronizes command line syntax warnings with manpage (bin/27010);sobomax2001-05-292-9/+14
| | | | | | | | - silence gcc(1) warnings (sobomax). PR: 27010 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su>, sobomax MFC after: 10 days
* Various fixes, including suggestions from some thoughtful folks, thanks.dougb2001-05-281-18/+47
| | | | | | | | | * Minor umask portability change (Christian Weisgerber <naddy@mips.inka.de>) * Clarify default value of the "run it now" option (bmah) * Make "run it now" $DESTDIR safe (bsd) * Handle installation of hard links for /.profile and /.cshrc properly when the auto-install option is selected * Fix some more whitespace issues
* Clarify handling of /etc/mergemaster.rc and $HOME/.mergemasterrcdougb2001-05-281-1/+6
|
* Follow symbolic links named as command line arguments if run without -R.ru2001-05-281-2/+3
| | | | | | | | | | | | | | This is required by symlink(7), ``Commands not traversing a file tree'' subsection, third paragraph: : It is important to realize that this rule includes commands which may : optionally traverse file trees, e.g. the command ``chown file'' is : included in this rule, while the command ``chown -R file'' is not. For chown(8) and chgrp(1), this is also is compliance with the latest POSIX 1003.1-200x draft. MFC after: 1 week
* Move the scrollback controls from kbdcontrol to vidcontrol.des2001-05-284-156/+147
| | | | | | Also fix some style bugs in the code and poor language in the man pages. Reviewed by: sobomax
* Be more consistent with the terminology, referring to "temporary anddougb2001-05-281-2/+2
| | | | | | | installed" instead of "old and new". Inspired by the somewhat non-linear PR, which really didn't have a fix, per se. PR: conf/27235 Roelof Osinga <roelof@eboa.com>
* Fix a problem when user selects -a (auto run) but we encounter a filedougb2001-05-281-1/+16
| | | | | | | | | | missing on the system. Instead of passing it by, mm was prompting... bad mm, no cookie! Brought to my attention by the PR, but the fix needed to be tweaked to handle the auto-install option as well. PR: misc/25731 Gilbert Gong <ggong@cal.alumni.berkeley.edu>
* Whitespace only changes to try and fit a little better into 80 columns.dougb2001-05-281-15/+20
|
* Instead of defining CONS_CLRHIST if it isn't defined, simply disabledd2001-05-271-6/+6
| | | | | | | | the -c option [when CONS_CLRHIST isn't defined]. This is okay since the only time CONS_CLRHIST wouldn't be defined is when kbdcontrol is being built in bootstrap-tools, and -c isn't needed then. Submitted by: imp
* A la rev. 1.36, define CONS_CLRHIST here if it isn't already sincedd2001-05-271-2/+6
| | | | this is a build tool, so it has to build on 4.x with the old headers.
* Add a -c option which clears the history buffer using the newdd2001-05-272-5/+18
| | | | | | | CONS_CLRHIST ioctl. PR: 27616 Reviewed by: ru
* Make dg_echo return up to the first 65536 bytes of a datagram.dwmalone2001-05-261-1/+1
| | | | | | | | | The patch I used isn't quite the one Lars suggested, but the size of the largest datagram you can recv isn't #defined anywhere, and probably isn't even bounded for some protocols. PR: 25050 Submitted by: Lars Eggert <larse@isi.edu>
* Don't spell requester as requestor.dwmalone2001-05-261-1/+1
|
* - sys/n[tw]fs moved to sys/fs/n[tw]fsru2001-05-262-2/+2
| | | | - /usr/include/n[tw]fs moved to /usr/include/fs/n[tw]fs
* mdoc(7) police: Fix markup.ru2001-05-253-23/+42
|
* Add the 'next' and 'prev' commands (aliased to '+' and '-') which skipkris2001-05-252-11/+78
| | | | | | | | | | | forward or backward by a specified number of tracks (defaulting to 1). Use strvisx() to display the media catalog in case it contains unprintable characters. Sort includes. Based on two patches submitted by PR, plus style fixes and other changes of my own. Submitted by: Seth Kingsley <sethk@osd.bsdi.com>, Maxime Henrion <mux@qualys.com> PR: bin/22672, bin/26962 MFC After: 1 week
* Submitted by: Juha-Matti Liukkonen (Cubical Solutions Ltd) (jml@cubical.fi)hm2001-05-2513-214/+383
| | | | | | Add a CAPI (hardware independent) driver i4bcapi(4) and hardware driver iavc (4) to support active CAPI-based BRI and PRI cards (currently AVM B1 and T1 cards) to isdn4bsd.
* - sys/msdosfs moved to sys/fs/msdosfsru2001-05-256-6/+9
| | | | | - msdos.ko renamed to msdosfs.ko - /usr/include/msdosfs moved to /usr/include/fs/msdosfs
* Make it clear that -P is the default.ru2001-05-252-0/+2
| | | | PR: docs/27629
* NetBSD's inetd uses different syntex from FreeBSD's in faith support.ume2001-05-241-3/+3
|
* Actually rename FDESC, PORTAL, UMAP and UNION file systems.ru2001-05-241-5/+5
| | | | OK'ed by: bp
* mount_fdesc -> mount_fdescfsru2001-05-241-2/+2
| | | | mount_portal -> mount_portalfs
* fdformat prompts for user confirmation. it exits 0 if the userphk2001-05-231-1/+1
| | | | | | | | doesn't confirm, which needlessly complicates scripts. PR: 15339 Submitted by: richard winkel rich@math.missouri.edu MFC after: 1 week
* Rename (after a repo-copy) some mount(8) programs:ru2001-05-233-7/+7
| | | | | | | | mount_fdesc -> mount_fdescfs mount_null -> mount_nullfs mount_portal -> mount_portalfs mount_umap -> mount_umapfs mount_union -> mount_unionfs
* Add NO_I4B to avoid building/installing isdn4bsd package.ru2001-05-231-1/+3
| | | | | Prompted by: Alexandr Listopad <laa@laa.zp.ua> MFC after: 3 days
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileru2001-05-234-4/+3
| | | | | | | | | | | | | | | systems were repo-copied from sys/miscfs to sys/fs. - Renamed the following file systems and their modules: fdesc -> fdescfs, portal -> portalfs, union -> unionfs. - Renamed corresponding kernel options: FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS. - Install header files for the above file systems. - Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland Makefiles.
* Don't say ``Enter pause (-1) for redialing when we're using a random interval.brian2001-05-221-6/+3
| | | | | | Show the calculated random value instead. Suggested by: Bill Richter <richterb@binkley.foothill.net>
* If we don't receive a TY_IPADDR option as part of a configure request, NAKbrian2001-05-221-62/+80
| | | | as if we received one with 0.0.0.0 as the argument.
* Fix constness warning introduced in syslog.h 1.21.dwmalone2001-05-211-2/+2
|
* Added pc98 note menu.nyan2001-05-211-0/+45
| | | | Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp>
* - Sort usage() output;sobomax2001-05-201-4/+7
| | | | | | | - sync usage() with reality and manpage; - display usage() even if terminal is not a syscons. Submitted by: ru, sobomax
* Spell FreeBSD.org correctly.ru2001-05-201-3/+3
|
* - Fix markup;sobomax2001-05-201-7/+12
| | | | | | - add nik into Authors section. Submitted by: ru
* Make /compat a relative symlink instead of an absolute symlink.jkh2001-05-192-4/+4
| | | | Requested by: jens
OpenPOWER on IntegriCloud