unix-history/.git
30 years agoFixed broken pte bit definitions. I fixed this long ago in pte.h, but
David Greenman [Wed, 25 May 1994 11:18:50 +0000 (11:18 +0000)]
Fixed broken pte bit definitions. I fixed this long ago in pte.h, but
sigh, the definitions are duplicated in here, too.

30 years agoChanges from John Dyson to fix system death problem that sometimes
David Greenman [Wed, 25 May 1994 11:06:51 +0000 (11:06 +0000)]
Changes from John Dyson to fix system death problem that sometimes
happend when running out of swap space.

30 years agoPCFS data corruption with cp Medium * Steven W./ATS
Steven Wallace [Wed, 25 May 1994 08:40:34 +0000 (08:40 +0000)]
PCFS data corruption with cp            Medium *        Steven W./ATS
Indicate task completed.

30 years agoFixes:
Steven Wallace [Wed, 25 May 1994 08:33:15 +0000 (08:33 +0000)]
Fixes:
  .  mmap will now work with PCFS without data corruption

Explanation:
Function pcfs_bmap receives a cluster number, bn, and returns the
filesystem relative block number.  This is accomplished by calling the function
pcbmap which needs the cluster number and can return the filesystem relative
block number or filesystem relative cluster number.
In function pcfs_bmap,

  return pcbmap(dep, bn << (pmp->pm_cnshift - pmp->pm_bnshift), bnp, 0);

is attempting to pass a block number by converting the cluster number, bn,
to a block number.  Since pcfs_bmap() receives a cluster number, and pcbmap()
requires a cluster number, this conversion should not take place.  Therefore,
this piece of code is changed to look like:

  return pcbmap(dep, bn, bnp, 0);

30 years agoupdate options for lpt (and note the removal of lpa).
Geoff Rehmet [Wed, 25 May 1994 08:20:35 +0000 (08:20 +0000)]
update options for lpt (and note the removal of lpa).
Would someone (Garrett?)  who is happy with working with texinfo update
the texinfo version of this document, please?

30 years agoFixed typo 3ifndef to #ifndef
Steven Wallace [Wed, 25 May 1994 08:06:59 +0000 (08:06 +0000)]
Fixed typo 3ifndef to #ifndef

30 years agoSorry for the previous, slightly summary commit-mesg. cockpit error.
Poul-Henning Kamp [Wed, 25 May 1994 01:28:41 +0000 (01:28 +0000)]
Sorry for the previous, slightly summary commit-mesg.  cockpit error.
Changed a \# to #, since groff choked on the former.

30 years agofoo
Poul-Henning Kamp [Wed, 25 May 1994 01:26:14 +0000 (01:26 +0000)]
foo

30 years agoAdded last missing NOBOUNCE to compile a kernel again with NOBOUNCE.
Andreas Schulz [Tue, 24 May 1994 22:10:15 +0000 (22:10 +0000)]
Added last missing NOBOUNCE to compile a kernel again with NOBOUNCE.

30 years agoAdded and changed the NOBOUNCE conditionals so that a compilable kernel
Andreas Schulz [Tue, 24 May 1994 22:05:09 +0000 (22:05 +0000)]
Added and changed the NOBOUNCE conditionals so that a compilable kernel
can generated with it again. No warranty that it is safe to use this option.

30 years agoCorrect a missing FIELS line in this manpage.
Guido van Rooij [Tue, 24 May 1994 17:40:34 +0000 (17:40 +0000)]
Correct a missing FIELS line in this manpage.

30 years agoFrom: John Hay <jhay@mikom.csir.co.za>
Jordan K. Hubbard [Tue, 24 May 1994 16:24:07 +0000 (16:24 +0000)]
From: John Hay <jhay@mikom.csir.co.za>

[Fix typo in calculation of buffer length]

30 years agoAdd a forgotten close. Failure happens in the update case, if there
Andreas Schulz [Tue, 24 May 1994 16:04:17 +0000 (16:04 +0000)]
Add a forgotten close.  Failure happens in the update case, if there
are no updated files. Found by Bruce Evans.

30 years agoGot this from think.com, nice patch to add Index: lines to cvs diff output
Rod Grimes [Tue, 24 May 1994 08:16:26 +0000 (08:16 +0000)]
Got this from think.com, nice patch to add Index: lines to cvs diff output
so you can put it right into patch.
Patch by Brian Berliner.

30 years agoEnhancements to use now -K option to rcs so that certain keywords are
Rod Grimes [Tue, 24 May 1994 08:11:37 +0000 (08:11 +0000)]
Enhancements to use now -K option to rcs so that certain keywords are
NOT touched by cvs.  Only takes effect if -DFREEBSD_DEVELOPER, and installs
as ncvs when this is defined.  You must also have the changes to rcs
for this to work.

30 years agoGet us closer to being able to install on the second drive.
Jordan K. Hubbard [Tue, 24 May 1994 08:09:49 +0000 (08:09 +0000)]
Get us closer to being able to install on the second drive.

30 years agoFix catman to produce zipped cats, like man does.
Andrey Chernov [Mon, 23 May 1994 22:13:36 +0000 (22:13 +0000)]
Fix catman to produce zipped cats, like man does.
In other (old) case we have both kind of cats at once.

30 years agoPath of uucp lock/temp corrected
Andrey Chernov [Mon, 23 May 1994 11:22:10 +0000 (11:22 +0000)]
Path of uucp lock/temp corrected

30 years agoOops got the wrong version, now fixed
Soren Schmidt [Mon, 23 May 1994 11:14:57 +0000 (11:14 +0000)]
Oops got the wrong version, now fixed

30 years agosyscons util remove use kbdcontrol & vidcontrol instead
Soren Schmidt [Mon, 23 May 1994 10:32:20 +0000 (10:32 +0000)]
syscons util remove use kbdcontrol & vidcontrol instead

30 years agoadd support for raw format fonts & scrnmaps, New -L command load default
Soren Schmidt [Mon, 23 May 1994 10:22:37 +0000 (10:22 +0000)]
add support for raw format fonts & scrnmaps, New -L command load default
screen map.

30 years agoAdded check to include /etc/make.conf if it exists. This allows different
Poul-Henning Kamp [Mon, 23 May 1994 05:45:56 +0000 (05:45 +0000)]
Added check to include /etc/make.conf if it exists.  This allows different
machines sharing the same source-tree to have different defaults for make.
Possible uses are:
CFLAGS= -O2 -m486 -pipe
NOPROFILE= no_way

30 years agoRemove conflicting malloc definition
Andrey Chernov [Mon, 23 May 1994 04:52:42 +0000 (04:52 +0000)]
Remove conflicting malloc definition

30 years agoDon't allow rmdir -p remove root directory
Andrey Chernov [Mon, 23 May 1994 01:41:06 +0000 (01:41 +0000)]
Don't allow rmdir -p remove root directory

30 years agoFix error: attempt to build "" directory, if -p specified
Andrey Chernov [Mon, 23 May 1994 01:15:19 +0000 (01:15 +0000)]
Fix error: attempt to build "" directory, if -p specified

30 years agoSorry, offset beyong start of file fix was incorrect, back it out.
Andrey Chernov [Mon, 23 May 1994 01:00:03 +0000 (01:00 +0000)]
Sorry, offset beyong start of file fix was incorrect, back it out.

30 years agoAdd sanity check for return of sotoinpcb() and intotcpcb()
Andrey Chernov [Sun, 22 May 1994 23:18:40 +0000 (23:18 +0000)]
Add sanity check for return of sotoinpcb() and intotcpcb()

30 years agoFrom Bruce:
Andrey Chernov [Sun, 22 May 1994 23:08:06 +0000 (23:08 +0000)]
From Bruce:

POSIX.1-1990 says:

"2.2.2.57 pathname: ... If the pathname refers to a directory, it may also
have one or more trailing slashes. ..."

Here are my fixes to support trailing slashes on directories.  They
include several other (much simpler) fixes:

o don't allow empty pathnames.
o allow names of length NAME_MAX.
o don't do anything except return successfullyt for
  rename(L1, L2) where L1 and L2 are links to the
  same file.

30 years agolseek don't check offset beyond beginning of file
Andrey Chernov [Sun, 22 May 1994 22:31:52 +0000 (22:31 +0000)]
lseek don't check offset beyond beginning of file

30 years agoAdded manpage
Soren Schmidt [Sun, 22 May 1994 20:23:09 +0000 (20:23 +0000)]
Added manpage

30 years agoFixed missing spltty/splxc around kbd_cmd();
Soren Schmidt [Sun, 22 May 1994 20:15:01 +0000 (20:15 +0000)]
Fixed missing spltty/splxc around kbd_cmd();

30 years agoFixed security problem with telnetd, which allowed
Karl Lehenbauer [Sun, 22 May 1994 19:24:51 +0000 (19:24 +0000)]
Fixed security problem with telnetd, which allowed
        telnet -l -hcert.org localhost
to change the user's host in utmp.
Thanks to Matthew Green <mrgreen@mame.mu.oz.au> for showing me this one.

30 years agoFixed security problem with rlogind, which allowed
Karl Lehenbauer [Sun, 22 May 1994 19:22:02 +0000 (19:22 +0000)]
Fixed security problem with rlogind, which allowed
        rlogin -l -hcert.org localhost
to change the user's host in utmp.
Thanks to Matthew Green <mrgreen@mame.mu.oz.au> for showing me this one.

30 years agoAdded myself to the FreeBSD additional contributors
Joerg Wunsch [Sun, 22 May 1994 18:06:02 +0000 (18:06 +0000)]
Added myself to the FreeBSD additional contributors

30 years agoAdded various people found in the fd driver source
Joerg Wunsch [Sun, 22 May 1994 18:05:29 +0000 (18:05 +0000)]
Added various people found in the fd driver source

30 years agoAdded myself being responsible for sys/fd (along with Serge Vakulenko)
Joerg Wunsch [Sun, 22 May 1994 18:05:05 +0000 (18:05 +0000)]
Added myself being responsible for sys/fd (along with Serge Vakulenko)

30 years agoThis commit was generated by cvs2svn to track changes on a CVS vendor
Joerg Wunsch [Sun, 22 May 1994 17:47:41 +0000 (17:47 +0000)]
This commit was generated by cvs2svn to track changes on a CVS vendor
branch.

30 years agoInitial (actually preliminary) version of an `fdcontrol' program.
Joerg Wunsch [Sun, 22 May 1994 17:47:41 +0000 (17:47 +0000)]
Initial (actually preliminary) version of an `fdcontrol' program.
Used to set up tunable parameters for the fd(4) driver. Currently
only available parameter is the drive geometry data record, as
being get/set with ioctl(FD_{S,G}TYPE).

30 years agoMake use of the new FDOPT_NORETRY facility. It does not make sense to
Joerg Wunsch [Sun, 22 May 1994 17:43:34 +0000 (17:43 +0000)]
Make use of the new FDOPT_NORETRY facility. It does not make sense to
verify formatted tracks with fully retryng. The head should not be moved
in either case.
Also some minor copyright cleanup.

30 years agoFirst round of floppy changes. Try making `fd' more robust.
Joerg Wunsch [Sun, 22 May 1994 17:39:17 +0000 (17:39 +0000)]
First round of floppy changes. Try making `fd' more robust.

Only effect for `ft.c': the register offset macros in fdreg.h have been
renamed to be all-capitals.

30 years agoFirst round of floppy changes. Try making `fd' more robust.
Joerg Wunsch [Sun, 22 May 1994 12:35:43 +0000 (12:35 +0000)]
First round of floppy changes. Try making `fd' more robust.

New features:
  .  ioctl command for setting the drive type (density etc.); restricted
     to the super-user
  .  ioctl for getting/seting `drive options'; currently only option
     is FDOPT_NORETRY: inhibit the usual retries; used when verifying
     a newly formatted track

Fixes:
  .  function prototypes
  .  made all internal functions `static'
  .  cleaned up & corrected .h files
  .  restructured, to make the chaotic function sequence more rational
  .  compiled with -Wall, and cleared all warnings
  .  introduced a mirror for the (write-only) `digital output register',
     to avoid the current kludge
  .  device probing completed by seeking/recalibrating, and looking
     for track 0 being found
  .  holding the controller down in reset state while it is idle (and
     thus saving allot of headaches)
  .  make requests fail that are not a multiple of the (physical)
     sector size
  .  removed the fixed physical sector size (512 bytes), allowing for any
     size the controller could handle (128/256/512/1024 bytes)
  .  replaced some silly messages
  .  fixed the TRACE* macro usage, debugging reports should be complete
     now again (debugging output is HUGE! though)
  .  removed fd_timeout for SEEK command; seeks are always reported by
     the controller to succeed, since the `success' only refers to the
     controller's idea of success - there is no hardware line to tell about
     the seek end (other than the `track 0' line)
  .  catch SENSEI's that report about a `terminated due to READY changed'
     status - could happen after a controller reset
  .  converted ``hz / <something>'' divide operations to divisors that are
     powers of two, so gcc can optimize them into shifts
  .  write/format operations are checked against a write-protected medium
     now *prior* starting the operation
  .  error reports of `invalid command' and `wrong cylinder' will cause
     shortcuts in the retrier() now
  .  fixed a bug in the retrier() causing bogus block numbers to be reported
  .  fdformat() does care for errors now

Known Bugs:
  .  no attempts have been made (yet) to improve the performance
  .  sometimes, bogus ``seek/recalib failed'' messages are logged; this
     is still a bug in the driver, but it's not harmful since it's
     usually caught by the retrier()

30 years agoAdd some clarificationc to lptcontrol manpage.
Geoff Rehmet [Sun, 22 May 1994 12:31:54 +0000 (12:31 +0000)]
Add some clarificationc to lptcontrol manpage.

30 years ago*** empty log message ***
Joerg Wunsch [Sun, 22 May 1994 12:30:32 +0000 (12:30 +0000)]
*** empty log message ***

30 years agoAdd some clarifications to lpt manpage,
Geoff Rehmet [Sun, 22 May 1994 12:29:21 +0000 (12:29 +0000)]
Add some clarifications to lpt manpage,
remove lpa manpage.

30 years agoAdd .CURDIR
Soren Schmidt [Sun, 22 May 1994 08:36:30 +0000 (08:36 +0000)]
Add .CURDIR

30 years agoDon't spit out strings with `***' on success - it just confuses
Jordan K. Hubbard [Sat, 21 May 1994 21:30:07 +0000 (21:30 +0000)]
Don't spit out strings with `***' on success - it just confuses
the greppers.

30 years agoAdd missing cd ${.CURDIR}
Jordan K. Hubbard [Sat, 21 May 1994 18:46:11 +0000 (18:46 +0000)]
Add missing cd ${.CURDIR}

30 years agoAdd missing semicolon.
Jordan K. Hubbard [Sat, 21 May 1994 18:41:31 +0000 (18:41 +0000)]
Add missing semicolon.

30 years agoFix all the sound devices to NOT have the absolute path /dev, the makes for
Rod Grimes [Sat, 21 May 1994 08:55:52 +0000 (08:55 +0000)]
Fix all the sound devices to NOT have the absolute path /dev, the makes for
missing device files in releases!!

30 years agoUnmounting a read-only PCFS filesystem will now work.
Sean Vickery [Sat, 21 May 1994 01:25:30 +0000 (01:25 +0000)]
Unmounting a read-only PCFS filesystem will now work.
The bug was just a logico (the programmer's equivalent of a typo)
in mountpcfs(), not the horrible problems people had been imagining.

30 years ago>From: Giles Lean <giles@maenor.apana.org.au>
Rod Grimes [Sat, 21 May 1994 01:23:04 +0000 (01:23 +0000)]
>From: Giles Lean <giles@maenor.apana.org.au>
Description:
Missing 'C' in '.Cm' directive.
How-To-Repeat:
man 3 printf

30 years agoAdded quota support and cleaned up alot of stuff.
Gary Clark II [Sat, 21 May 1994 00:38:32 +0000 (00:38 +0000)]
Added quota support and cleaned up alot of stuff.
Changed README to reflect this.

30 years agoChange an ugly looking printf.
Jordan K. Hubbard [Fri, 20 May 1994 23:50:02 +0000 (23:50 +0000)]
Change an ugly looking printf.

30 years agoAdmit responsibility on piewm and xphoon.
Satoshi Asami [Fri, 20 May 1994 23:02:43 +0000 (23:02 +0000)]
Admit responsibility on piewm and xphoon.

30 years agoIf a directory's not created, emit a warning as usual but still set its modes.
Jordan K. Hubbard [Fri, 20 May 1994 22:58:21 +0000 (22:58 +0000)]
If a directory's not created, emit a warning as usual but still set its modes.

30 years agoGordon Burditt <gordon@sneaky.lonestar.org>
Jordan K. Hubbard [Fri, 20 May 1994 22:50:37 +0000 (22:50 +0000)]
Gordon Burditt <gordon@sneaky.lonestar.org>

Fix ownership of catpages, make ~uucp/uucppublic really public.

30 years agoNew uuencode scrnmap files
Soren Schmidt [Fri, 20 May 1994 12:39:02 +0000 (12:39 +0000)]
New uuencode scrnmap files

30 years agoAdd new uuencoded scrnmap files (prepare for removing old binary stuff)
Soren Schmidt [Fri, 20 May 1994 12:38:26 +0000 (12:38 +0000)]
Add new uuencoded scrnmap files (prepare for removing old binary stuff)

30 years agoNew readable ascii keymapfiles
Soren Schmidt [Fri, 20 May 1994 12:34:59 +0000 (12:34 +0000)]
New readable ascii keymapfiles

30 years agoAdded New keymapfiles (prepare for removeing old binary ones)
Soren Schmidt [Fri, 20 May 1994 12:34:04 +0000 (12:34 +0000)]
Added New keymapfiles (prepare for removeing old binary ones)

30 years agoADDed uuencode font files (prepare for removing binary ones YEAH!)
Soren Schmidt [Fri, 20 May 1994 12:29:00 +0000 (12:29 +0000)]
ADDed uuencode font files (prepare for removing binary ones YEAH!)

30 years agoAdded uuencoded font files
Soren Schmidt [Fri, 20 May 1994 12:26:18 +0000 (12:26 +0000)]
Added uuencoded font files

30 years agoFixed Id string
Soren Schmidt [Fri, 20 May 1994 12:24:15 +0000 (12:24 +0000)]
Fixed Id string

30 years agoNew probe routine, and changed the way commands are send to
Soren Schmidt [Fri, 20 May 1994 12:23:28 +0000 (12:23 +0000)]
New probe routine, and changed the way commands are send to
the keyboard.

30 years agoAdded prober Id string
Soren Schmidt [Fri, 20 May 1994 12:22:40 +0000 (12:22 +0000)]
Added prober Id string

30 years agoMinor fixes & updates
Soren Schmidt [Fri, 20 May 1994 12:21:49 +0000 (12:21 +0000)]
Minor fixes & updates

30 years agoAdded kbdconteol & vidcontrol
Soren Schmidt [Fri, 20 May 1994 12:21:04 +0000 (12:21 +0000)]
Added kbdconteol & vidcontrol

30 years agoNew vidcontrol utility replaces old syscons(1)
Soren Schmidt [Fri, 20 May 1994 12:20:38 +0000 (12:20 +0000)]
New vidcontrol utility replaces old syscons(1)
Font files are now uuencoded, and so are the scrnmaps.
Also allows changing colors and cursor type

30 years agoNew kbdcontrol command, replaces the old syscons(1)
Soren Schmidt [Fri, 20 May 1994 12:18:09 +0000 (12:18 +0000)]
New kbdcontrol command, replaces the old syscons(1)
Keymaps is now in a readable ascii format

30 years agospell-correct my name:)
Joerg Wunsch [Fri, 20 May 1994 12:09:23 +0000 (12:09 +0000)]
spell-correct my name:)

30 years agoLatest error correction code from Steve Gerakines
Jordan K. Hubbard [Fri, 20 May 1994 10:09:46 +0000 (10:09 +0000)]
Latest error correction code from Steve Gerakines

30 years agoPut md5.c copyright on md4.c. I contacted RSA inc. for that some time ago
Guido van Rooij [Fri, 20 May 1994 06:44:56 +0000 (06:44 +0000)]
Put md5.c copyright on md4.c. I contacted RSA inc. for that some time ago
but forgot to do it.

-Guido

30 years agoRemoved CDROM timeout problem - solved with SCSI_DELAY suggestion by Rodney
Steven Wallace [Fri, 20 May 1994 05:57:33 +0000 (05:57 +0000)]
Removed CDROM timeout problem - solved with SCSI_DELAY suggestion by Rodney
Grimes.

Added:
PCFS data corruption with cp            Medium          ???
PCFS extended DOS partition support     Low             ???
ISOFS over NSF fix                      Medium/High     ???

someone needs to fix PCFS so data does not get corrupted when copying
files from a DOS partition, otherwise what good does it do?

Also, NFS mounting a ISOFS CDROM can cause the server host to freeze up
if the NFS client acceses the wrong spot on a CDROM, although local
access works fine.

30 years agoFix some typos in my newly added 8.8 section.
Jordan K. Hubbard [Fri, 20 May 1994 05:42:05 +0000 (05:42 +0000)]
Fix some typos in my newly added 8.8 section.

30 years agoAdd the todo list for 1.1.5.
Jordan K. Hubbard [Fri, 20 May 1994 01:04:24 +0000 (01:04 +0000)]
Add the todo list for 1.1.5.

30 years agoFix multiply slash problem
Andrey Chernov [Fri, 20 May 1994 00:34:30 +0000 (00:34 +0000)]
Fix multiply slash problem

30 years agoMerge incremental changes with PW_COMPACT
Andrey Chernov [Fri, 20 May 1994 00:29:20 +0000 (00:29 +0000)]
Merge incremental changes with PW_COMPACT

30 years agoWait a much longer time for slow devices like CD multichangers to timeout
Jordan K. Hubbard [Thu, 19 May 1994 22:21:05 +0000 (22:21 +0000)]
Wait a much longer time for slow devices like CD multichangers to timeout
(by request of Horo Hideo).

30 years agoInclude file munging.
Jordan K. Hubbard [Thu, 19 May 1994 20:12:49 +0000 (20:12 +0000)]
Include file munging.

30 years agoAdd patches from Jim Lowe to remove warnings (sorry for the delay, folks).
Jordan K. Hubbard [Thu, 19 May 1994 20:03:47 +0000 (20:03 +0000)]
Add patches from Jim Lowe to remove warnings (sorry for the delay, folks).

30 years ago1) Added s/key support .
Guido van Rooij [Thu, 19 May 1994 18:13:18 +0000 (18:13 +0000)]
1) Added s/key support .
2  Added optional excessive login logging.
3) Added login acces control on a per host/tty base.
4) See skey(1) for skey descriptions and src/usr.bin/login/README
  for the logging and access control features.

-Guido

30 years agoA perfectly good libgnuregex.a and you can't use it! No header was being
Jordan K. Hubbard [Thu, 19 May 1994 17:40:01 +0000 (17:40 +0000)]
A perfectly good libgnuregex.a and you can't use it!  No header was being
installed.  Do so now as gnuregex.h

30 years agoDocument the multicast stuff.
Jordan K. Hubbard [Thu, 19 May 1994 17:32:33 +0000 (17:32 +0000)]
Document the multicast stuff.

30 years agoassert MACROS needed to compile with debugging support. (Thanks Jeff!)
Nate Willams [Thu, 19 May 1994 14:34:09 +0000 (14:34 +0000)]
assert MACROS needed to compile with debugging support.  (Thanks Jeff!)

30 years agoTurn on purging of accounting records in /etc/daily.
Geoff Rehmet [Thu, 19 May 1994 12:34:48 +0000 (12:34 +0000)]
Turn on purging of accounting records in /etc/daily.
(Now that we have sa)

30 years agoAdd the installation of /var/crash/minfree with a value of 2048 so that
Rod Grimes [Thu, 19 May 1994 12:29:29 +0000 (12:29 +0000)]
Add the installation of /var/crash/minfree with a value of 2048 so that
savecore will not FILL the /var partition.

30 years agoUse "cons25" for console too since we're now syscons. Turn on two
Jordan K. Hubbard [Thu, 19 May 1994 11:07:56 +0000 (11:07 +0000)]
Use "cons25" for console too since we're now syscons.  Turn on two
VTY's by default; give user a couple of vty's to play with out of the box
(leave 4th entry turned off for X).

30 years agoAdd 4 VTY's back to the list of things to create by default (the codrv
Jordan K. Hubbard [Thu, 19 May 1994 11:05:09 +0000 (11:05 +0000)]
Add 4 VTY's back to the list of things to create by default (the codrv
comments were obsolete), also create a PS/2 mouse entry.

30 years agoStart preparing for the new, improved, doesn't-hang-the-keyboard version of
Jordan K. Hubbard [Thu, 19 May 1994 10:55:34 +0000 (10:55 +0000)]
Start preparing for the new, improved, doesn't-hang-the-keyboard version of
syscons as standard.  pccons adherants are welcome to go fix pccons, but for
now I see only syscons really moving forward.
see

30 years agoDon't give up on 24 bit card (Bt545 et al) case, just suggest that
Jordan K. Hubbard [Thu, 19 May 1994 08:17:53 +0000 (08:17 +0000)]
Don't give up on 24 bit card (Bt545 et al) case, just suggest that
the aha driver may be necessary.

30 years agoFix spelling error per Mike Murphy.
Rod Grimes [Wed, 18 May 1994 22:53:56 +0000 (22:53 +0000)]
Fix spelling error per Mike Murphy.

30 years agoComplete the final step in moving XNSrouted, mrouted and routed to their
Jordan K. Hubbard [Wed, 18 May 1994 17:09:24 +0000 (17:09 +0000)]
Complete the final step in moving XNSrouted, mrouted and routed to their
new home in /usr/src/usr.sbin.  Thanks to Rod for providing the excellent
`cook book' instructions!

30 years agoMoving day!
Jordan K. Hubbard [Wed, 18 May 1994 16:40:00 +0000 (16:40 +0000)]
Moving day!

30 years agoRemove the now bogus IP_VAT_COMPAT.
Jordan K. Hubbard [Wed, 18 May 1994 16:23:25 +0000 (16:23 +0000)]
Remove the now bogus IP_VAT_COMPAT.

30 years agoSigh....
Jordan K. Hubbard [Wed, 18 May 1994 16:22:04 +0000 (16:22 +0000)]
Sigh....

I'm going to reverse myself on the earlier decision to disable vat
compatibility by default.  Why?  Three reasons:

1. The "incompatibility" wasn't anywhere near as bad as I thought.
   When ftp/rlogin/et al go to setsockopt() their TOS (Type Of Service)
   and it fails, they don't abort or anything drastic, they simply whinge
   to syslog and continue.  I can live with the occasional message on this,
   especially when a make world for the person in question will fix it.

2. My attempt to make this conditional with IOP_VAT_COMPAT was bogus; I
   simply wasn't thinking!  Making it a kernel config option won't do squat
   for things like ftp and rlogin unless I go and add the option to _their_
   Makefiles too, which would be obviously evil and bad.  Conservative is all
   well and good, but this was just stupid.  There's really no easy way to do
   this for the minor error message it would avoid.  Forget it.

3. I can avoid a doc hit on turning this on for 1.1.5 users - just setting
   the multicast options and recompiling the kernel is easy, remaking the world
   would have been a bit much to ask (and folks getting 1.1.5 bindist won't
   get the syslogd warnings anyway).

30 years agoRevert to original NetBSD code -- using user_from_uid()
Geoff Rehmet [Wed, 18 May 1994 12:21:33 +0000 (12:21 +0000)]
Revert to original NetBSD code -- using user_from_uid()
also LDADD = -lutil

30 years agoThis is John Lind's NFS FAQ, the latest one with examples.
Jordan K. Hubbard [Wed, 18 May 1994 09:31:17 +0000 (09:31 +0000)]
This is John Lind's NFS FAQ, the latest one with examples.

30 years agoPut in a pointer to John Lind's excellent NFS information FAQ.
Jordan K. Hubbard [Wed, 18 May 1994 09:30:53 +0000 (09:30 +0000)]
Put in a pointer to John Lind's excellent NFS information FAQ.

30 years agoAdd ac and sa to Makefile
Geoff Rehmet [Wed, 18 May 1994 08:48:14 +0000 (08:48 +0000)]
Add ac and sa to Makefile

30 years agosa(8), from NetBSD, FreeBSD smoothing by Michael Reifenberger
Geoff Rehmet [Wed, 18 May 1994 08:04:11 +0000 (08:04 +0000)]
sa(8), from NetBSD, FreeBSD smoothing by Michael Reifenberger