summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* One program I missed in removing MOUNT_* constants.wollman1996-05-133-51/+63
|
* Get rid of the last vestiges of the old MOUNT_* constants in thewollman1996-05-1328-528/+390
| | | | | | | | | mount_* programs. While we're at it, collapse the four now-identical mount programs for devfs, fdesc, kernfs, and procfs into links to a new mount_std(8) which can mount any really generic filesystem such as these when called with the appropriate argv[0]. Also, convert the mount programs to use sysexits.h.
* When two units swapped, copy SC_STATIC flag too, not clear itache1996-05-131-1/+2
|
* Prevent mixing of static and dynamic unit allocation strategiesache1996-05-132-7/+23
|
* Change Bernd's e-address.asami1996-05-131-2/+2
|
* Add #ifndef/#endif around the "#define CCD_OFFSET 16", so you can overrideasami1996-05-132-2/+6
| | | | | | it in your kernel config file. Requested (in essence) by: phk
* Leave 16 lines in front of each component partition. It's now safe toasami1996-05-132-6/+20
| | | | | | | use sd87a or sd237e even if they start at the beginning of the slice. You can also use sd85c if you prefer, although you need to change the type field in the disklabel to "4.2BSD".
* PR: bin/1194: PPP server port not initializedphk1996-05-131-1/+2
| | | | | | | Latest round of changes omitted initialization of tunnel device unit variable. Submitted by: John Capo <jc@irbs.com>
* More informative command sequence for creating UFS floppies.jkh1996-05-131-4/+6
| | | | Submitted by: harold barker <hbarker@dsms.com>
* Whoops, don't add something that already exists. Removed redundantnate1996-05-133-18/+12
| | | | entries but better document the existing PCCARD stuff.
* Added commented out PCCARD entries to GENERIC, also document and addnate1996-05-135-5/+28
| | | | entries in LINT.
* Neaten up some of the comments in here.jkh1996-05-131-1/+4
|
* Correct email address for Alex Nashjkh1996-05-131-2/+2
|
* makewhatis -> makewhatis.localwosch1996-05-121-2/+2
|
* Bugfix: nested *?+ in regexp at /usr/bin/makewhatis line 286wosch1996-05-124-4/+84
| | | | | | | | | | | | Submitted by: invalid opcode <coredump@nervosa.com> makewhatis.local - start makewhatis(1) only for file systems physically mounted on the system Running makewhatis from /etc/weekly for rw nfs-mounted /usr may kill your NFS server -- all clients start makewhatis at the same time! So use this wrapper instead calling makewhatis directly. Pointed out by: Bruce
* Small touchups:wpaul1996-05-124-12/+34
| | | | | | | | | | | | - Fix typos in comments in hash.c. - Remove unneeded and unused member from grouplist struct in hash.h. (Curiously, the compiler never complained about this even though the member was of type 'struct grps' which is not defined anywhere in this program.) - char ch -> int ch in revnetgroup.c. - char *argv[0]; -> char *argv[]; also in revnetgroup.c. - Force the user to specify at least one of the -u or -h flags and complain if they specify both.
* Fix a brain-o. The scratch ram on aic78X0 controllers is initialized to 0x00gibbs1996-05-121-2/+2
| | | | | not 0xff after POST, so test for that when trying to determine if a BIOS intialized the card for us.
* fasterwosch1996-05-121-0/+72
| | | | | | | | | | average 2-3 x for option -h or -q 10 x handle option -q and -L better exit status, similar to grep (0: matches found 1: no matches found 2: error)
* Add comments forwosch1996-05-121-1/+27
| | | | | | some useful aliases 8-bit locale a nicer prompt
* Describe calendar format & arguments betterache1996-05-121-18/+40
|
* Now that X Inside, Inc. is shipping their Motif, point at them instead.jkh1996-05-121-12/+19
|
* Fix the "well-known retries bug" (a logic-o).joerg1996-05-123-6/+6
|
* Document LFS as broken.jkh1996-05-122-0/+6
|
* Ups, I removed NMB_INIT too.phk1996-05-121-1/+3
| | | | Complained about by: asami
* Free our device information in one error case in the driver probe.gibbs1996-05-121-1/+2
|
* Add missing '+ io_port' to two outbs.gibbs1996-05-121-5/+4
| | | | | | | Add missing splx() in one error case during probes. Remove unnecessary return and break. Submitted by: Noriyuki Soda <soda@sra.co.jp>
* Give up waiting for a successful keyboard reset after somejoerg1996-05-113-15/+21
| | | | | | unreasonable time. I've got a PCI mainboard that simply doesn't grok it, so continuing with a warning (and a keyboard that's working nevertheless :) seems to be better than spin-looping forever.
* Here is a diff of /usr/src/usr.sbin/ppp against current. The diffsphk1996-05-1122-175/+252
| | | | | | | | | | | | | | | | | | | add some logging functionality which I find very useful. 'set debug link' will record just link up/down and address assignments. 'set debug connect' will record the entire chat dialog 'set debug carrier' will record just chat lines including 'CARRIER' (so that I can be sure I'm getting a 28.8 line). There was a global change required to permit LogPrintf to take a bit mask instead of a bit position value (to permit logging some events on either of two flags, so that no change in 'set debug lcp' would result from the code supporting 'link'. Thus the diffs are rather long for such a small change. The man page is also touched. Oh, and there was a slight syntax problem in route.c Reviewed by: phk Submitted by: Tony Kimball <alk@Think.COM>
* Includes cleanupache1996-05-112-4/+6
| | | | Submitted by: bde
* Nail down NCL_INIT = 1, and put a comment there telling what it is.phk1996-05-111-8/+4
|
* Some cosmetics and some better error-checking.phk1996-05-111-46/+43
| | | | | | Reviewed by: phk Submitted by: "Daniel O'Callaghan" <danny@panda.hilink.com.au> Submitted by: Archie Cobbs <archie@whistle.com>
* Add a comment how to enable the emacs command line editorwosch1996-05-111-1/+6
|
* Convert the option parser to use getopt(3). This makes it morejoerg1996-05-112-87/+89
| | | | | | | | | | | | orthogonal with the rest of the system (you can now use either -PPS or -P PS), and makes the parser more intelligible. The only drawback is that the old semantics for the -i flag in case a non-numeric argument is following are no longer fully supported (only if -i is the very last arg at all), since getopt(3) doesn't support the discticnction between numeric and non-numeric arguments. Make lpr also understand dashes as input pseudo filenames. This finally makes lp(1) fully comply with Posix.2.
* Clean out the BUGS section/comments now that our lpr has a betterjoerg1996-05-112-21/+2
| | | | option parsing.
* Fix a bug caused by the collision of a local assembler label with anotherjdp1996-05-112-16/+16
| | | | | use of the same label in a recently-introduced PIC_PROLOGUE. This should solve the recent core dumps from pdksh.
* Make newsgroups hot.jkh1996-05-111-30/+32
|
* Hide options for emulators and static file systems in opt_dontuse.h.bde1996-05-115-16/+31
| | | | | These options only apply at config time. Using them at compile time would break the corresponding lkms.
* Fixed BOOT_HD_BIAS.bde1996-05-112-11/+21
|
* Describe russian calendarache1996-05-101-0/+3
|
* Add russian calendar directoryache1996-05-101-1/+3
|
* Add russian data handlingache1996-05-101-1/+1
|
* Russian calendarache1996-05-1012-1/+272
|
* Localize even more.ache1996-05-103-15/+22
| | | | | FIx Orthodox Easter calculation Better debug output
* Allocate mbufs from a separate submap so that NMBCLUSTERS works aswollman1996-05-109-27/+58
| | | | expected.
* Fix typing errorache1996-05-101-1/+1
|
* Allow to configure national Easter names.ache1996-05-106-51/+93
| | | | Speedup my national months/days handling code.
* Fix a bogon in the pic + threadsafe version of cerror, it was missingpeter1996-05-102-6/+10
| | | | | | a PIC_EPILOGUE (leaving an extra long on the stack). Submitted by: John Polstra <jdp@polstra.com>
* Localize itache1996-05-1022-41/+275
| | | | | Handle Orthodox Eastern -Wall cleanup
* One more linux -> __linux__gibbs1996-05-101-2/+2
|
* The aic78X0 cards have 0xff in all bytes of scratch ram after POST. Ifgibbs1996-05-101-30/+58
| | | | | | | | | | | | | a BIOS was not installed, this will still be true by the time we probe the chip. We use this heuristic to determine if we should use the left over scratch ram target settings for controllers that don't have an SEEPROM. We also "snapshot" the host adapter SCSI id and whether ultra is enabled or not and use these values if a BIOS was installed. The card will act as if a BIOS was installed even if there wasn't one if you warm reboot, but since the scratch ram area is still valid in this case, its hardly worth the effort of writing a shutdown routing that clears out the scratch ram. This should make users of motherboard controllers happy.
OpenPOWER on IntegriCloud