summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* What cretin named both a global and a function "reboot"? Globaljkh1994-08-281-3/+3
| | | | | changed to Reboot. Submitted by: jkh
* Bring in my changes from the 1.1 init.bsdi which causes a reboot (was anate1994-08-272-2/+24
| | | | | halt before) if init is sent an interrupt signal. This is necessary for <CTL><ALT><DEL> to do the right thing if enabled.
* Added comcontrol ...this thing *really* should be renamed.dg1994-08-261-1/+1
|
* Set fs_clean.dg1994-08-261-0/+1
|
* Once again, slattach sources ported from 1.1.5 with fixes.rich1994-08-233-172/+122
| | | | | Reviewed by: davidg, bde Submitted by: rich
* Slattach ported from 1.1.5 plus Bruce Evans suggested fix (closerich1994-08-233-120/+511
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FDs and fork before redialing) to prevent dialer from hanging with newer sio.c. Also moved history from the source to the cvs log (here) per David G's suggestion. This compiles but needs testing now... Rich /* * Hacks to support "-a|c|n" flags on the command line which enable VJ * header compresion and disable ICMP. * If this is good all rights go to B & L Jolitz, otherwise send your * comments to Reagan (/dev/null). * * nerd@percival.rain.com (Michael Galassi) 92.09.03 * * Hacked to change from sgtty to POSIX termio style serial line control * and added flag to enable cts/rts style flow control. * * blymn@awadi.com.au (Brett Lymn) 93.04.04 * * Put slattach in it's own process group so it can't be killed * accidentally. Close the connection on SIGHUP and SIGINT. Write a * syslog entry upon opening and closing the connection. Rich Murphey * and Brad Huntting. * * Add '-r command' option: runs 'command' upon recieving SIGHUP * resulting from loss of carrier. Log any errors after forking. * Rich 8/13/93 * * This version of slattach includes many changes by David Greenman, Brian * Smith, Chris Bradley, and me (Michael Galassi). None of them are * represented as functional anywhere outside of RAINet though they do work * for us. Documentation is limited to the usage message for now. If you * make improovments please pass them back. * * Added '-u UCMD' which runs 'UCMD <old> <new>' whenever the slip * unit number changes where <old> and <new> are the old and new unit * numbers, respectively. Also added the '-z' option which forces * invocation of the redial command (-r CMD) upon startup regardless * of whether the com driver claims (sometimes mistakenly) that * carrier is present. Also added '-e ECMD' which runs ECMD before * exiting. * * marc@escargot.rain.com (Marc Frajola) 93/09/10 * * Minor fixes to allow passive SLIP links to work (connections with * modem control that do not have an associated dial command). Added * code to re-check for carrier after dial command has been executed. * Added SIGTERM handler to properly handle normal kill signals. Fixed * bug in logic that caused message about no -u command to be logged * even when -u was specified and the sl number changes. Tried to get * rid of redundant syslog()'s to minimize console log output. Improved * logging of improper command line options or number of command * arguments. Removed spurious newline characters from syslog() calls. * * gjung@gjbsd.franken.de * * sighup_handler changed to set CLOCAL before running redial_cmd. * added flag exiting, so exit_handler is not run twice. Fork * before reopening tty. */
* Nuked the 2 second DTR wait; this is handled correctly in the sio driver.dg1994-08-231-1/+0
|
* adjkerntz addedache1994-08-221-1/+1
|
* Better support for clean bit: prompt the user to fix it if it's wrongdg1994-08-216-6/+30
| | | | when not preening, and indicate if it was fixed when preening.
* Install aliases "fasthalt" and "fastboot" for halt and boot respectively.dg1994-08-213-3/+18
| | | | | This is for "backwards compatibility". Documented these aliases in the manual page.
* fastboot is no longer - don't install it.dg1994-08-211-1/+1
|
* Added a "clean" field to the output - to show the state of the clean flag.dg1994-08-201-2/+2
|
* Added filesystem clean bit support. This only affects fsck during adg1994-08-209-6/+84
| | | | | | | preen (-p), and in that case the filesystem is skipped if it is clean. A new flag "-f" for 'force' has been added which basically gives back the old behavior of checking all the filesystems all the time. This very closely models the behavior of SunOS and Ultrix.
* Killed explicit OS specification.dg1994-08-191-2/+2
|
* Kill explicit OS specification.dg1994-08-191-2/+2
|
* NetBSD -> FreeBSDdg1994-08-191-2/+2
|
* netbsd -> kernel, NetBSD -> FreeBSDdg1994-08-192-5/+5
|
* Terry Lambert's loadable kernel module support - modload & modunloaddg1994-08-199-2/+744
| | | | utilities w/improvements from the NetBSD group.
* `init' needs crypt() for insecure consoles.wollman1994-08-151-1/+1
|
* Make keywords.h get properly built.jkh1994-08-141-1/+1
| | | | Submitted by: jkh
* Use nulls to pad proctitle rather than spaces...makes ps(1) output moredg1994-08-111-1/+1
| | | | readable.
* Suppress irritating extra newline after kern.boottime.wollman1994-08-081-1/+1
|
* Added support for setting the per-interface MTU.dg1994-08-082-8/+34
|
* Delete obsolete references to librpc.a.wollman1994-08-084-9/+0
|
* Get rid of update. Make man page installation work with our schemewollman1994-08-051-1/+1
| | | | (and rename a few in the process).
* Changed output formatting to accurately represent the precision.dg1994-08-051-2/+2
|
* Converted 'vmunix' to 'kernel'.dg1994-08-058-46/+46
|
* Convert to our man installation style. Also fixed long-standing bugwollman1994-08-0553-59/+829
| | | | | in `fastboot'/`fasthalt' in which the interpreter would hang around after `reboot' or `halt' is run, causing an irritating ``Killed'' message.
* Fixed so that it can grok old style "fastlinks".dg1994-08-026-6/+6
|
* Don't call getmntopts with a null pointer as an option string; it'lldg1994-08-021-3/+2
| | | | | dereference it. Pass optarg from getopts as it should have been done. This bug caused mount_cd9660 to segfault whenever -o was used.
* Fixed NULL pointer dereference that occured when any options weredg1994-08-022-2/+6
| | | | specified.
* Update this to the latest version from Steve Gerakines. This is an easyjkh1994-06-226-206/+494
| | | | | drop-in for me and looks substantailly neater than the previous version, so I'll give the floppy tape users a break (but just this once :).
* Changes from Paul Kranenburg which bring us into sync with his sources:rich1994-06-152-8/+13
| | | | | | | | | | | | | | handling of errors through the standard err() and warn() more fixes for Geoff Rehmet's NULL pointer bug. fixes NULL pointer bugs when linking mono and nested X servers. supports a `-nostdlib' option. accept object files without a symbol table don't attempt dynamic linking when `-A' is given a few variable names have chaged (desc -> fd), and the formatting has changed which should make it much easier to track his sources. I tested 'make world' for /usr/src and X twice with these changes.
* Commented out a pointer to qtar(1), we don't have that yet.ats1994-06-072-6/+6
| | | | Changed the -description in the SYNOPSIS to description.
* Add the -r and -s flags to the Usage string.ats1994-06-051-2/+2
|
* From Bde:ache1994-05-302-98/+56
| | | | | o Rewrote lots of it to be more like stty.1. The old one was too verbose and the complicated options no longer exist.
* From Bde:ache1994-05-302-44/+4
| | | | o Removed bidir options.
* I know better than to edit files on freefall, next time take a patch file.rgrimes1994-05-281-1/+1
| | | | Change vm_paramh. to vm_param.h
* Remove old style manual page depends so make install with NOMAN setrgrimes1994-05-282-4/+0
| | | | can run.
* Disable afterinstall: for manual pages until the manual page fix patchrgrimes1994-05-281-1/+1
| | | | comes in.
* Remove stuff for building manual pages the old way.rgrimes1994-05-282-14/+0
|
* Comment out missing programs fsdb icheck and ncheck.rgrimes1994-05-281-5/+7
| | | | | | | Comment out porting work needed program scsiformat. Remove XNSrouted and routed as they have been moved to usr.sbin. Reviewed by: Submitted by:
* Must now include vm/vm.h and vm/vm_param.h due to the way we define KERNBASE.rgrimes1994-05-281-0/+3
| | | | Reviewed by: David Greenman
* Don't build /sbin shared.rgrimes1994-05-281-0/+1
|
* This commit was generated by cvs2svn to compensate for changes in r1558,rgrimes1994-05-26207-0/+47134
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * BSD 4.4 Lite sbin Sourcesrgrimes1994-05-26207-0/+47134
| | | | | | | | | | Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
* | BSD 4.4 Lite sbin Sourcesrgrimes1994-05-2673-0/+18495
| | | | | | | | | | Note: XNSrouted and routed NOT imported here, they shall be imported with usr.sbin.
* | This commit was generated by cvs2svn to compensate for changes in r1553,rgrimes1994-05-264-0/+1015
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * BSD 4.4 Lite usr.sbin Sourcesrgrimes1994-05-264-0/+1015
|
* Latest error correction code from Steve Gerakinesjkh1994-05-202-290/+502
|
OpenPOWER on IntegriCloud