summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Assorted mdoc(7) fixes:hmp2003-07-141-7/+17
| | | | | | | | | - Use .Tn for ACPI/APM acronyms - Sort SEE ALSO entries by section - Add AUTHORS section Reviewed by: des (mentor) OK'ed by: njl
* Hook zzz up to the build.njl2003-07-141-1/+2
|
* Remove the zzz files since they have been moved to src/usr.sbin/zzznjl2003-07-143-100/+1
|
* Move the zzz utility to its own directory since it is no longer dependentnjl2003-07-143-0/+104
| | | | on apm(8)
* More changes to use __FBSDID() for setting rcsids, and fix thegad2003-07-146-26/+19
| | | | | | | | format of 'sccsid' lines so they consistently match style(9) guidelines. Inspired by recent update to lpd.c by charnier. Reviewed by: discussed on cvs-src & with bde and obrien MFC after: 15 days
* Take advantage of the common_source/lp.cdefs.h file to change lprgad2003-07-1412-42/+26
| | | | | | | | source to use __FBSDID() for setting rcsids. Also fix the format of 'sccsid' lines to consistently match style(9) guidelines. Reviewed by: discussed with bde and obrien MFC after: 15 days
* Introduce a new lp.cdefs.h file, which will be used to make itgad2003-07-141-0/+107
| | | | | | | | | | | | | somewhat easier to build this lpr on other operating systems. This simply includes <sys/cdefs.h> when that is appropriate, and then checks for any cdefs-ish macros that lpr uses, and defines them if they don't already exist. This is only a start at making freebsd's lpr less of a hassle to port. It is mainly added so all of lpr can be changed to use the __FBSDID() macro, without making it *more* of a hassle to build on other OS's. Reviewed by: discussed with bde and obrien MFC after: 15 days
* Change zzz to be a shell script that checks for APM or ACPI support andnjl2003-07-143-3/+101
| | | | | | suspends the system appropriately. Submitted by: Mark Santcroos <marks@ripe.net>
* If mktime() or timegm() return -1, print out the resume timer value asrwatson2003-07-131-3/+6
| | | | "unknown", rather than a conversion of -1 to a date/timestamp.
* Eliminate non-existent word.jkoshy2003-07-131-1/+1
| | | | Submitted by: jwd
* Add a missing DITEM_CONTINUE flag so the options menu returns to themurray2003-07-131-1/+1
| | | | | | | correct place when you exit it with 'Q'. PR: misc/47906 MFC after: 3 days
* From the PR:kris2003-07-131-10/+38
| | | | | | | | | | | | | | | | | | | | I am the maintainer of CTM. There is a problem that when very large deltas are created, that the program ctm_smail, which is responsible for mailing the deltas out, will instead create a single message that says the delta is too large. However, if the -q option is set, instead of placing this message in the queue (as it would have done with the deltas), it mails it out directly. This conflicts with the current working of CTM in that the email address is set as %%REPLACE-ME%% so that the created mailing pieces can be signed by gnu-pgp, and then have the mailing address changed. This fix means that if the -q option is set, and the delta is too large, the "too large" message is placed in the queue. Also, I made the "too large" message a little more up to date. Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu> PR: bin/50328 MFC After: 2 weeks
* The second argument to fgetln() is a size_t *, not an int *.tmm2003-07-121-1/+1
|
* Give users the ability to select an alternative MTA during the installation.trhodes2003-07-128-66/+504
| | | | | | | | This option adds Postfix and Exim to the list, however, qmail is not added due to license restrictions. Collaborated with: Simon L. Nielsen <simon@nitro.dk> Reviewed by: jhb, re@, -audit.
* - Allow retrieval of local Configuration ROM.simokawa2003-07-121-2/+1
| | | | - Clear Configuration ROM buffer in advance for '-d' option.
* Lower WARNS to 3 so that this still compiles on non x86 architectures.mux2003-07-111-1/+1
|
* Huge cleanup of the rarpd(8) code :mux2003-07-112-188/+52
| | | | | | | | | | | | | | | | | | | | - Use getifaddrs() instead of rolling our own buggy one. Previously, rarpd(8) would fail to see some interfaces because of a hardcoded limit. It now successfully sees any interface in the system, and this also makes the code _much_ simpler. - Replace strncpy() calls with strlcpy() calls. Some uses of strncpy() were bogus ; the code wasn't ensuring that the string was NUL terminated. - Don't try to guard about select() FD_* macros being undefined. - Use IF_NAMESIZE and ETHER_ADDR_LEN macros where appropriate. - Add static keywords to function definitions for consistency, since the prototypes have it (I wonder why GCC didn't complain about this). - Remove compat code for very old BSD versions and SunOS. - Remove code for systems not having the dirent.h header. - The code is now WARNS=5 clean so mark it as such. - Don't add -DTFTP_DIR="/tftpboot" to the build command line since it's the default. MFC after: 2 weeks
* "towards" -> "toward". According to dictionary.com, the use of "towards"jkoshy2003-07-081-2/+2
| | | | | | | | | | is common in British English, while "toward" is the preferred form in American English. Use the American form for consistency. Correct the date on the manual page. Submitted by: Tom Rhodes <trhodes@freebsd.org>, underway@comcast.net (Gary W. Swearingen)
* Add support for a -n argument which displays user and group IDsbrooks2003-07-072-5/+14
| | | | | | numerically rather than converting to a user or group name. MFC After: 1 week
* Remove MAINTAINER= lines from individual Makefiles in favor of thegshapiro2003-07-075-10/+0
| | | | MAINTAINER file (which already had entries for sendmail).
* Grammar tweaking. "has been" is very often not as good as "is" or "was".markm2003-07-061-6/+6
|
* add FBSDIDcharnier2003-07-067-19/+21
|
* use a list to enumerate optionscharnier2003-07-061-17/+11
|
* de-__Pcharnier2003-07-063-24/+26
| | | | | use port/proto to represent services (not proto/port). add FBSDID
* Disallow multiple 'machine' directives in a kernel configurationjkoshy2003-07-061-0/+3
| | | | | | file. Reviewed by: ru, bde
* New section 5 manual page detailing our kernel configuration filejkoshy2003-07-061-0/+343
| | | | | | | format. Reviewed by: Ruslan Ermilov <ru@freebsd.org>, Jens Schweikhardt <schweikh@schweikhardt.net>
* Make jexec duplicate the actions of the shell searching for anbmilekic2003-07-041-2/+2
| | | | | | | | executable file even if the specified action/filename does not contain a '/' character; convert execv() to execvp(). Submitted by: Christian S.J. Peron <maneo@bsdpro.com> PR: bin/54109
* o style(9) fixessmkelly2003-07-032-17/+11
| | | | | | | | | | | - Reordered #includes - Only include <sys/types.h>, not it and <sys/cdefs.h> o style.Makefile(5) fixes - No SRCS= line when only one src file with same name as program o Use warn()/errx() instead of fprintf() - Integrated patch from Philippe Charnier <charnier@xp11.frmug.org> Approved by: jeff (mentor)
* Correct paths to mount sources.gordon2003-07-023-3/+3
|
* Move mount_portalfs, mount_smbfs, and mount_nwfs from sbin to usr.sbin.gordon2003-07-021-0/+3
| | | | | | | | They don't have alot of reason to be in sbin and contribute to library bloat in the dynamic case. If you are using any of these filesystem type to hold your /usr, please seek professional help. The actual code was repo-copied by joe.
* name union.ume2003-06-282-8/+10
|
* o update for new 802.11 supportsam2003-06-281-34/+103
| | | | | | o relax some error handling so other drivers (e.g. ath) are usable o revert ap scanning logic to old scheme o add to capability info printing for 11a and 11g
* update for 802.11 supportsam2003-06-281-1/+2
|
* When pointing users at mount_devfs to populate the /dev of a jail,rwatson2003-06-261-0/+10
| | | | | | | tell them that they also need to use devfs rules to prevent inappropriate devices from appearing in the jail; add an Xref. In earlier versions of this man page, the user was instructed to use sh MAKEDEV jail, which only created a minimal set of device nodes.
* Unbreak this for alpha and friends.smkelly2003-06-261-2/+2
| | | | Double pointy hat to me, or something.
* o Fix typo.maxim2003-06-261-2/+2
| | | | Submitted by: smkelly
* - Add a software watchdog facility.smkelly2003-06-264-0/+338
| | | | | | | | | This commit has two pieces. One half is the watchdog kernel code which lives primarily in hardclock() in sys/kern/kern_clock.c. The other half is a userland daemon which, when run, will keep the watchdog from firing while the userland is intact and functioning. Approved by: jeff (mentor)
* Temporarily re-remove the bluetooth tools..julian2003-06-241-2/+0
| | | | | | there are problems with their Makefiles I wasn't aware of.. Pointed out by: ru@
* Account for the fact that "buildworld" builds in the 'obj' treejulian2003-06-241-1/+1
| | | | Pointed out by: Andrew Gallatin <gallatin@cs.duke.edu>
* Typo.mtm2003-06-241-1/+1
| | | | | | This has worked so far because the variable was empty by default. Submitted by: Kostyuk Oleg <cub@cub.org.ua>
* Connect bluetooth tools for i386 only.julian2003-06-241-0/+2
| | | | | | | These are probably machine independent, but there is no way for the developers to test them other than on x86. They will become MD as testing becomes possible.
* Remove world read bit from the ppp binary; we don't do world-execute,rwatson2003-06-231-2/+2
| | | | | | | so it was inconsistent (although probably not harmful) to have world-read. Submitted by: Socketd <db@traceroute.dk>
* Delete keyadmin: its functionality is now provided by setkey(8).ru2003-06-234-1528/+0
|
* Delete prefix: its functionality has been merged into ifconfig.tjr2003-06-233-159/+0
|
* Delete gifconfig: its functionality has been merged into ifconfig.tjr2003-06-233-1111/+0
|
* - Set close on exec flag for device file descriptors.mdodd2003-06-221-0/+11
| | | | | | | - Reset signal handlers in event_cmd_exec_act(). PR: i386/35182 Submitted by: Daniel O'Connor <darius@dons.net.au>
* - Don't ignore SIGTERM.mdodd2003-06-222-4/+20
| | | | | | | | - Add a command line switch to trigger POWERSTATECHANGE actions on un-reported power state changes. PR: i386/32251 Submitted by: Walter C. Pelissero <walter@pelissero.org>
* Though manpage says that 0.0.0.0 can be used as HISADDR for gwume2003-06-211-2/+4
| | | | | | | in Framed-Route, it didn't work. Since ncprange_aton() treats 0.0.0.0 and :: as prefixlen=0, we need to care the case. MFC after: 1 week
* We don't need two $FreeBSD$'s. Remove the older one.gad2003-06-211-2/+0
|
* make pciconf understand it's own output as stated in the manpage.jmg2003-06-201-5/+13
| | | | | | | | pciconf -r none8@pci1:12:2: 0x0 now works. PR: bin/10312 Submitted by: Castor Fu
OpenPOWER on IntegriCloud