summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Use the length of the interface name, not the length of its address whenbrooks2004-01-211-1/+1
| | | | | | printing the name. Approved by: brian
* Disable constant merging in isdnd and isdnmonitor. This is a "make mycperciva2004-01-212-0/+8
| | | | | | | | life easier" patch: I doubt this will affect anyone else, but the FreeBSD Update build code was getting very confused by this. Approved by: rwatson (mentor) PR: bin/61087
* This is Sparc64-only.ru2004-01-212-1/+2
|
* This is i386-only.ru2004-01-212-1/+2
|
* Mark APM manpages as i386-only.ru2004-01-214-2/+4
|
* Import sdpd(8) sources. This is Bluetooth Service Discovery Protocol daemon.emax2004-01-2026-0/+4284
| | | | | | | | Extend libsdp(3) API to allow service registration and removal. Fix uninitialized variable bug in sdpcontrol(8). Reviewed by: imp (mentor) No objection: ru
* Also sort ignoring case -- makes finding things by browsing easier.ru2004-01-201-2/+2
|
* Clean up makefiles.ru2004-01-193-15/+11
| | | | Reviewed by: harti
* add missing setusershell() calls.charnier2004-01-181-0/+1
| | | | | PR: bin/2442 Reviewed by: Friedemann Becker <zxmxy33@mail.uni-tuebingen.de>
* Put chkey(1), newkey(8), and keyserv(8) into the crypto distribution.ru2004-01-181-0/+1
|
* Do not install SYMLINKS if both NO_MAILWRAPPER andjohan2004-01-171-0/+2
| | | | | | | | | | NO_SENDMAIL is defined. PR: 57058 Reported by: Henri Hennebert <hlh@cocoon.cercle.be> Melvyn Sopacua on current@ Submitted by: ru@ MFC after: 2 weeks
* - Properly build both crypto and non-crypto versions of theru2004-01-178-28/+10
| | | | | | | package management tools. - Drop redundant dependency of pkg_create(1) and pkg_delete(1) on crypto libraries now that they do not link with libfetch.
* Replaced black magic with white magic.ru2004-01-171-5/+2
|
* Fixed the fatal bug: CFLAGS should be added to, not overridden.ru2004-01-171-1/+1
| | | | This prevented CPU and optimization flags to be added here.
* - Build things in pure dictionary order (see sort(1)).ru2004-01-161-91/+144
| | | | | | | | | | - Unify the conditional assignments section so that architectural exclusions come first, then options and !options, sorted by the option name, also in directory order, then architecture specific sections, sorted by the architecture name, with i386 being a traditional exception. Prodded by: bde
* o Document -s flag.maxim2004-01-151-0/+7
| | | | | No objections from: ume MFC after: 2 weeks
* -DSMALL will remove the need of dump.c (for rtsol)ume2004-01-141-0/+14
| | | | Obtained from: KAME
* add -F flag, which configures sysctl(8) setting by rtsoldume2004-01-144-15/+53
| | | | | | itself (rather than warn about the current setting). Obtained from: KAME
* ansify.ume2004-01-146-31/+20
| | | | Obtained from: KAME
* use timeradd/sub/cmp.ume2004-01-141-58/+7
| | | | Obtained from: KAME
* - Use the standard .y and .l transformation rules -- this fixesru2004-01-131-16/+11
| | | | | | | | | | | the usual parallel make race in custom .y rules. - Fixed some style bugs. - Removed -v from YFLAGS. Prodded by: bde Reviewed by: bde, njl
* Yet another inf file handling tweak: when checking for Ndi\Params\foowpaul2004-01-131-2/+2
| | | | | | | | keys, don't just do a substring match on "Ndi\Params". Instead, check explicitly for strings that begin with "Ndi\Params". Why? Because it's possible to create your own keys with different paths, like "PROSetNdi\NdiExt\Params" which is what Intel does in their PRO/1000 driver's .INF file.
* Discuss the 'MAILTO' option.trhodes2004-01-121-1/+5
| | | | | PR: 58783 Submitted by: Marc Silver <marcs@draenor.org>
* Xref the proper manual pages.trhodes2004-01-121-3/+3
| | | | | PR: 60999 Submitted by: Marc Silver <marcs@draenor.org>
* - Handle doubled double quotes:mdodd2004-01-111-1/+11
| | | | | | | `"""foo"" bar"' -> `"foo" bar' - Handle C++ style comments. Requested by: wpaul
* Get rid of "lineno: 0" in error messages from create mode.phk2004-01-114-25/+42
| | | | | Add -w(arning) flag which makes failure to look up uid/gid a nonfatal warning instead of an error.
* Use my newly acquired magic stick and put aslcompiler.y.h intoru2004-01-111-3/+4
| | | | | | | | | SRCS to teach make(1) that many .c sources are dependent on it. This fixes parallel (-j) builds and makes it possible to build individual .o files separately. While here, removed PROG from CLEANFILES -- it's taken care of already by bsd.prog.mk.
* collect all "extern bla" stuff in extern.h in order to get cross-filephk2004-01-115-16/+8
| | | | type checking. No bugs found.
* Add a `-H <fd>' option that is like `-h <fd>', but accepts an alreadyiedowse2004-01-114-22/+52
| | | | | | | encrypted password on the specified file descriptor. PR: bin/22033 MFC after: 2 weeks
* Problem:rwatson2004-01-111-0/+8
| | | | | | | | | | | | | | | | | When an NFS server is port-scanned nfsd sometimes exits. This has happened 3 times the last few weeks. Nfsd has been written to exit when accept(2) fails. Unfortunately accept can sometimes make a "normal" return with errno ECONNABORTED and in this case nfsd exits prematurely. Solution: Check for ECONNABORTED (and also EINTR, since nfsd uses signals) and continue. Submitted by: Bjoern Groenvall <bg@sics.se> PR: 61084
* Fix serious ugliness introduced in 1.61, which leads to long delay in bootsobomax2004-01-101-5/+11
| | | | | | | | | | | | sequence when machine is started without attached USB mouse. Only do repeated attempts to re-open device if the usb module has been actually loaded. Also fix broken logic in doing delays between open attempts - do delays between attempts, not after each attempt. Due to previous behaviour being very annoying for notebook owners this is a good 5.2 MFC candidate. MFC after: 2 days
* Change sdp_open_local(3) API. It now takes a path to a control socketemax2004-01-093-55/+89
| | | | | | | | Teach sdpcontrol(8) how to talk to the local SDP server Update man pages s/u_int/uint Reviewed by: imp (mentor), ru
* Add a GraphViz-exporting ngctl(8) "dot" command. You can now creategreen2004-01-095-11/+203
| | | | | | | very useful .dot files of your netgraph(4) to quickly visualize the nodes, hooks and edges. An example of this can be found here: http://people.freebsd.org/~green/sample-netgraph-dot.ps If anyone would like to refine the output further, please do so.
* Do not emit comments when -n is specified.phk2004-01-081-5/+10
|
* fixed improper routing-message flagsuz2004-01-081-1/+1
| | | | Obtained from: KAME
* From PR:anholt2004-01-071-1/+1
| | | | | | | | | | | In fdformat.c a closing parenthesis is at the wrong place. Instead of adding sizeof _PATH_DEV + 1 to the length of argv[optind], the length of the string starting (sizeof _PATH_DEV + 1) characters after argv[optind]'s beginning (accessing junk memory if we jump over the terminating null character) is passed to malloc(). PR: bin/60026 Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at>
* Update pciconf man page to indicate that only some of the functionsrwatson2004-01-061-1/+2
| | | | | | in pciconf are limited to the superuser. Requested by: ru
* Clean up the check for invalid X_DSDT and X_FACS portions of the FADT.njl2004-01-041-16/+25
| | | | | Add fadt_revision for telling if the FADT has correct 64 bit addresses, separate from whether the XSDT has legal 64 bit addresses.
* mergemaster -p (pre-world) doesn't populate /etc/rc.d, which led to adougb2004-01-041-5/+4
| | | | | | false positive for every file according to the new stale rc.d checker. Friendly reminder by: dhw
* Add 'fwe' so one doesn't get "<unknown network interface type>".obrien2004-01-042-0/+2
|
* Use fprintf() instead of errx() when displaying usage string. The program namecharnier2004-01-041-2/+3
| | | | will not be written twice.
* Properly use strftime(): NUL terminating character is already taken intocharnier2004-01-041-1/+1
| | | | account.
* Remove unused local variable.charnier2004-01-041-4/+3
|
* Tweak ndiscvt to support yet another flavor of .INF files (look forwpaul2004-01-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the NTx86 section decoration). subr_ndis.c: correct the behavior of ndis_query_resources(): if the caller doesn't provide enough space to return the resources, tell it how much it needs to provide and return an error. subr_hal.c & subr_ntoskrnl.c: implement/stub a bunch of new routines; ntoskrnl: KefAcquireSpinLockAtDpcLevel KefReleaseSpinLockFromDpcLevel MmMapLockedPages InterlockedDecrement InterlockedIncrement IoFreeMdl KeInitializeSpinLock HAL: KfReleaseSpinLock KeGetCurrentIrql KfAcquireSpinLock Lastly, correct spelling of "_aullshr" in the ntoskrnl functable.
* Fix usage() (-d is really -n).green2004-01-021-1/+1
|
* Handle WinNT .inf files with a $windows nt$ signature but no .NT decoratedwpaul2004-01-022-2/+10
| | | | | | AddReg sections. Also insert extra newline after emitting device name overrides.
* I missed a s/package_exists/package_installed/ in the last commit.obrien2004-01-021-1/+1
|
* s/package_exists/package_installed/g as that's much more descriptive ofobrien2004-01-021-1/+1
| | | | what the function does.
* I think we can stop doing 'ldconfig -aout' during the install now.obrien2004-01-023-10/+0
| | | | The base install doesn't have any a.out bits anymore and hasn't for years.
* s/package_exists/package_installed/g as that's much more descriptive ofobrien2004-01-025-12/+8
| | | | what the function does.
OpenPOWER on IntegriCloud