summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix one more _PATH_UNIX.wollman1994-09-241-2/+2
|
* Get rid of _PATH_UNIX completely; use getbootfile(3) instead.wollman1994-09-242-21/+19
| | | | | | | DANGER WILL ROBINSON! _PATH_UNIX is currently defined as the literal string "don't use this". I am of two minds about this myself, but wanted to get something into the tree as quickly as possible.
* Document more MIB variables.wollman1994-09-231-2/+8
|
* Add two new flags:wollman1994-09-222-9/+29
| | | | | -q just shut up, will you?! -u unlink output file after successful load
* Automatically load NFS and a bevy of other filesystems.wollman1994-09-2223-28/+269
|
* Automatically load filesystem if not present in system and loadable.wollman1994-09-221-1/+11
|
* Use getvfs* functions to map between VFS types and names.wollman1994-09-224-8/+40
| | | | | Automatically load UFS if it is not present but is loadable. (This won't happen now, but could happen if we fix NFS diskless support.)
* Correction for new sysctl interfaceache1994-09-191-4/+4
|
* rewritted to use sysctl, no more /var/run/.adjkerntz nowache1994-09-193-39/+26
|
* Added support for MSDOS file systems.dfr1994-09-191-0/+1
|
* Added mount_msdos.dfr1994-09-1910-3/+981
| | | | Obtained from: NetBSD
* bugfix: change gidset[] type from int to gid_tache1994-09-192-4/+4
|
* Various fixes:dg1994-09-182-6/+22
| | | | | | | | | modload doesn't honor it's -p argument. It also will destroy the input file when you don't specify an output symbol file with -o. Submitted by: John Kohl
* Per discussion on the mailing-lists, move LKMs from /sbin to /lkm, andwollman1994-09-161-4/+0
| | | | | | arrange for that directory to get created by mtree. Also, process secure directory after all the others, because the programs there may overlay ones installed from the main part of the tree.
* Don't exit early if the device is not character special or if thebde1994-09-152-8/+22
| | | | | | | | device driver cannot supply a label (real or faked). This allows you to practice using fdisk on disposable media (e.g., "dd count=1 <dev/zero >/tmp/junk; fdisk /tmp/junk", "dd count=1 </etc/passwd >/tmp/fix-up-the-mess; fdisk /tmp/fix-up-the-mess") and allows me to test DOSpartitioning and labelling on floppies.
* Missing 'break' after setting interface route flag was causing interfacepst1994-09-151-0/+1
| | | | routes to not be properly marked as static.
* Fixed a bug where mount_nfs would core-dump if used with IP# directly.phk1994-09-151-9/+10
| | | | | | | Also moved some KERBEROS related stuff inside the #ifdef. Should we always try to do a reverse lookup (IP#->name) ? It has som merit, but is probably against the tradition or huh ?
* Add ip_mroute_mod, if NOLKM is not defined.wollman1994-09-141-0/+4
|
* Makefile to generate the ip_mroute_mod.o LKM. After talking this overwollman1994-09-141-0/+9
| | | | | | with DavidG, I've come to the conclusion that unless and until we define a new directory to put these things in, /sbin is the right place. (OSF/1 does a lot worse for non-executables in /sbin...).
* Fixed slattach to do flags ioctl via network device rather than tty.dg1994-09-141-2/+34
| | | | Submitted by: Rich Murphey, and fixed up by me.
* Add fdisk to SUBDIR.jkh1994-09-131-1/+1
|
* Woops, last patch was by Wolfgang Solfrank.dg1994-09-093-3/+3
|
* Two fixes from the NetBSD group (Charles Hannum):dg1994-09-096-21/+45
| | | | | | | 1) dir.c: get byte order right in mkentry() 2) pass1.c: When doing -c2 conversion, do secsize reads for a symlink - not doing so was causing the conversion to fail because the device driver can't deal with short reads.
* Fix endian bug introduced at Berkeley during the Net2->4.4-lite transition.pst1994-09-081-8/+12
| | | | | | Fix is courtesy of the NetBSD folks. Reviewed by: pst
* Get rid of the need for the readonly mandatory option - set readonlydg1994-09-071-4/+6
| | | | flags regardless of whether the user specified it.
* Fix punctuation.bde1994-09-052-2/+2
|
* 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
|
OpenPOWER on IntegriCloud