unix-history/.git
31 years agoFIX CSH SEGEMENTATION VIOLATION
Kevin Lahey [Wed, 19 Aug 1992 00:00:00 +0000 (00:00 +0000)]
FIX CSH SEGEMENTATION VIOLATION

I have run into the csh segmentation violation bug, and I was too lazy to
install the simple "alloc + 4" bugfix, so I tracked it down.  It seems to come
about whenever you are in a directory in your account which has a pathname
length which is divisable by 4, for instance,  /users/kml/g.  To test,
create such a directory, enter it, and sorta execute alot of commands.
Sooner or later, csh will die.

The fix is to add one to the space allocated for a string in the
dcanon() routine where it normalizes directory names which include
the string defined for the environment variable 'HOME'.

AUTHOR: Kevin Lahey (kml@mosquito.cis.ufl.edu)
386BSD-Patchkit: patch00013

31 years agoRING BUFFER LENGTH INCORRECTLY REPORTED
Stephen McKay [Tue, 18 Aug 1992 00:00:00 +0000 (00:00 +0000)]
RING BUFFER LENGTH INCORRECTLY REPORTED

The RB_LEN() macro in /usr/include/sys/tty.h is sometimes out by 1.
In particular, in the case of a buffer containing a single character at the
very end, RB_LEN() would return 0.  This caused ttread() to block until a
2nd character was read before delivering them both.  The user would find
RAW mode programs such as vi would occasionally (1 in 1024 keypresses) get
"stuck" requiring a second keypress to bring it to life.

AUTHOR: Stephen McKay (robert@psych.psy.uq.oz.au [forwarder])
386BSD-Patchkit: patch00012

31 years agoCOPY ON WRITE FOR TEXT PAGES
Paul Kranenburg [Fri, 4 Sep 1992 00:00:00 +0000 (00:00 +0000)]
COPY ON WRITE FOR TEXT PAGES

The 386 does not generate a page protection fault while it is
executing in supervisor mode :-(, so copy on write handling never takes
place when the kernel stuffs data into a process's text- or any other
non-anonymous segment.  So these cases must be explicitly checked for.

NOTE: This is a security hole where it is possible for any
normal user with access to the debugger and read access
to any suid root program to become root!  You should
apply this patch immediately!

AUTHOR: Paul Kranenburg (pk@cs.few.eur.nl)
386BSD-Patchkit: patch00011

31 years agoSCROLLING BACKWORDS ON CONSOLE CAUSES CRASH
Frank Maclachlan [Fri, 21 Aug 1992 00:00:00 +0000 (00:00 +0000)]
SCROLLING BACKWORDS ON CONSOLE CAUSES CRASH

I was horrified whilst scrolling backwards in a file with the less
pager at my console when my 386BSD system suddenly rebooted.  Subsequent
tests revealed that the system would crash whenever I scrolled rapidly
backwards through this file using less.

Most files won't cause the system to crash.  To demonstrate the failure,
do the the following (if you don't mind watching your system crash):

        hd /usr/mdec/bootwd >junk       # create a file
        less junk                       # invoke less
        G                               # go to the end of the file
        ^B^B^B...                       # rapid repeated control B's to
                                        #  scroll backwards

AUTHOR: Frank Maclachlan (fpm@crash.cts.com)
386BSD-Patchkit: patch00010

31 years agoMBUF ALLOCATION FLAGS
Wolfgang Solfrank [Mon, 31 Aug 1992 00:00:00 +0000 (00:00 +0000)]
MBUF ALLOCATION FLAGS

While the flags in sys/mbuf.h define M_DONTWAIT and M_WAIT in terms
of M_NOWAIT and M_WAITOK, these flags are only used for the kernel malloc.
But the actual code in kern/uipc_mbuf.h uses kmem_malloc, which has
only a parameter canwait.  This parameter has just the opposite meaning
from the flag values above.  This may result in occasional hangs of the
system (if mbuf allocation with M_DONTWAIT is called which may result in
a wait) or panics or other nasty things (if called with M_WAIT which may
return a NULL pointer that is not expected and as such not tested by the
calling code).

AUTHOR: Wolfgang Solfrank (ws@tools.de)
386BSD-Patchkit: patch00009

31 years agoMAN PATHBUF OVER 1K
James W. Dolter [Thu, 3 Sep 1992 00:00:00 +0000 (00:00 +0000)]
MAN PATHBUF OVER 1K

In the function config.c:cadd() the pointer bp isn't recalculated
when the pathbuf needs to be realloced.  If realloc moves the storage
'bp' is left hanging.  The bug manifests itself when you modify man.conf
such that the pathbuf expands beyond 1k.

AUTHOR: James W. Dolter
386BSD-Patchkit: patch00008

31 years agoGREENMAN BUGFIX KIT
David Greenman [Thu, 20 Aug 1992 00:00:00 +0000 (00:00 +0000)]
GREENMAN BUGFIX KIT

1. Buffers were being immediately aged after read, greatly reducing
file system performance.
2. The file system buffer cache hash calculation resulted in hash
collision occuring 100% of the time.
3. File system buffers were allocated twice.  They were also deallocated
twice, so there was not a memory leak, but freebufspace was incorrect
and too much memory was being used.
4. Unnecessary call to swapout_threads in the vm system.

AUTHOR: David Greenman (davidg@agora.uucp)
386BSD-Patchkit: patch00007

31 years agoCRASH FOR PARENT (.) REFERENCE AFTER CHROOT
Christoph Robitschko [Mon, 17 Aug 1992 00:00:00 +0000 (00:00 +0000)]
CRASH FOR PARENT (.) REFERENCE AFTER CHROOT

When chroot() was used to change the apparent root directory
for a process, a reference to "./", the parent directory of the new
"root" directory, the system "panic"ed.

AUTHOR: Christoph Robitschko (chmr@fstgs01.tu-graz.ac.at)
386BSD-Patchkit: patch00006

31 years agoWHATIS COREDUMP
Andrew Moore [Thu, 20 Aug 1992 00:00:00 +0000 (00:00 +0000)]
WHATIS COREDUMP

The whatis program had two unitinitialized pointers which would
cause it to core dump sporadically depending on the initial stack contents.

AUTHOR: Andrew Moore (alm@netcom.com)
386BSD-Patchkit: patch00005

31 years agoFIRST SECTOR IN MULTISECTOR READ IN BAD144 TABLE
Frank Maclachlan [Wed, 19 Aug 1992 00:00:00 +0000 (00:00 +0000)]
FIRST SECTOR IN MULTISECTOR READ IN BAD144 TABLE

The bad144 table search code at finds the sector in the bad144
table and replaces the block number, cylinder, head, and sector addresses
with values corresponding to the replacement sector.  The sector count
register is loaded with the number of sectors in the entire transfer.
This is wrong; it *MUST* be set to *one* sector.  A read would return
the wrong data in sectors after the first; a write would *overwrite*
other replacement sectors or even the bad144 table on the last track.

AUTHOR: Frank Maclachlan (fpm@crash.cts.com)
386BSD-Patchkit: patch00004

31 years agoINCORRECT CMOS RAM SIZE CAUSES CRASH
Terry Lambert [Sat, 15 Aug 1992 00:00:00 +0000 (00:00 +0000)]
INCORRECT CMOS RAM SIZE CAUSES CRASH

        This patch fixes the problem encountered on HP Vectra, AT&T
6386E/33 WGS, AT&T StarServer E, and AT&T 6386/25 WGS systems where
the CMOS RAM size is not what was expected.  It also has fixes to
allow running small kernels in 640K, and warns the user of conditions
which may cause the kernel to fail to boot correctly.

AUTHOR: Terry Lambert (terry@icarus.weber.edu)
386BSD-Patchkit: patch00003

31 years agoBIG MEMORY HANG
William Jolitz [Sat, 15 Aug 1992 00:00:00 +0000 (00:00 +0000)]
BIG MEMORY HANG

Because of the number of kernel map entries being to small
and an inappropriate calculation for the number of buffer pages, it was
possible for the kernel to hang if you had more than 8 Meg of memory
installed in your system.

AUTHOR: William Jolitz (withheld)
386BSD-Patchkit: patch00002

32 years agoPATCH NEEDED FOR KERNEL REBUILD TO SUCCEED
Chris G. Demetriou [Mon, 29 Jun 1992 00:00:00 +0000 (00:00 +0000)]
PATCH NEEDED FOR KERNEL REBUILD TO SUCCEED

Many people who have made their own kernel configurations have discovered
that their kernel won't build until they change their Makefile to include
a reference to vers.o (missing symbol _version).

Also, the version number was not updated each time the kernel was rebuilt.

AUTHOR: Chris G. Demetriou (cgd@berkeley.edu)
386BSD-Patchkit: patch00001

31 years ago386BSD 0.1 before patchkit commits
William F. Jolitz and Lynne Greer Jolitz [Wed, 15 Jul 1992 07:32:23 +0000 (07:32 +0000)]
386BSD 0.1 before patchkit commits

31 years agoStart development on 386BSD-0.1-patchkit origin/386BSD-0.1-patchkit-Import
Diomidis Spinellis [Wed, 9 Jun 1993 21:00:00 +0000 (21:00 +0000)]
Start development on 386BSD-0.1-patchkit
Keep prior development files

Synthesized-from: 386BSD-0.1-patched/

31 years ago386BSD 0.1 release origin/386BSD-Release 386BSD-0.1
William F. Jolitz [Wed, 15 Jul 1992 03:07:55 +0000 (19:07 -0800)]
386BSD 0.1 release
Snapshot of the completed development branch

Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development origin/386BSD-0.1-Snapshot-Development
William F. Jolitz [Wed, 15 Jul 1992 03:07:55 +0000 (19:07 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/COPYRIGHT
Work on file usr/othersrc/BUGNFIX.FORM
Work on file usr/othersrc/CAREWARE.INFO
Work on file usr/othersrc/CONTRIB.LIST
Work on file usr/othersrc/SOFTWARE.FORM
Work on file usr/othersrc/REGISTRATION

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 03:06:46 +0000 (19:06 -0800)]
386BSD 0.1 development
Work on file usr/src/BUGNFIX.FORM
Work on file usr/src/CONTRIB.LIST
Work on file usr/src/CAREWARE.INFO
Work on file usr/src/COPYRIGHT
Work on file usr/src/REGISTRATION
Work on file usr/src/SOFTWARE.FORM

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 03:06:02 +0000 (19:06 -0800)]
386BSD 0.1 development
Work on file CAREWARE.INFO
Work on file REGISTRATION
Work on file SOFTWARE.FORM
Work on file BUGNFIX.FORM

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 03:04:37 +0000 (19:04 -0800)]
386BSD 0.1 development
Work on file CONTRIB.LIST

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 03:04:06 +0000 (19:04 -0800)]
386BSD 0.1 development
Work on file COPYRIGHT

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 02:40:23 +0000 (18:40 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/if_ne.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 02:07:43 +0000 (18:07 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/compile/GENERICISA/version
Work on file usr/src/sys.386bsd/compile/GENERICISA/vers.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 01:54:56 +0000 (17:54 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/vm/vm_swap.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 01:53:09 +0000 (17:53 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/autoconf.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 00:55:21 +0000 (16:55 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/wd.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Wed, 15 Jul 1992 00:54:55 +0000 (16:54 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/ufs/ufs_disksubr.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 22:18:24 +0000 (14:18 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/machdep.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 20:31:12 +0000 (12:31 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/disklabel/disklabel.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 20:05:01 +0000 (12:05 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/wt.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 19:25:24 +0000 (11:25 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/isa.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 06:09:37 +0000 (22:09 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/kern__physio.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 04:34:06 +0000 (20:34 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/as.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 03:28:59 +0000 (19:28 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/locore.s

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 03:28:33 +0000 (19:28 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/compile/GENERICISA/assym.s

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 03:25:59 +0000 (19:25 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/sys/resourcevar.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 03:15:34 +0000 (19:15 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/sys_process.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 02:55:22 +0000 (18:55 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/include/param.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 02:50:41 +0000 (18:50 -0800)]
386BSD 0.1 development
Work on file usr/386bsd.errata/crypt.instructions

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Tue, 14 Jul 1992 02:30:20 +0000 (18:30 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/init/init.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 15:25:49 +0000 (07:25 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/ROADMAP

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 14:24:35 +0000 (06:24 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/kern_subr.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:22:15 +0000 (05:22 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/etc.i386/fstab.wd

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:21:37 +0000 (05:21 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/etc.i386/disktab

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:21:26 +0000 (05:21 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/etc.i386/MAKEDEV

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:20:37 +0000 (05:20 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/syslog.conf

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:20:16 +0000 (05:20 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/remote

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:19:34 +0000 (05:19 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/rc

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:19:06 +0000 (05:19 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/rc.local

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:18:14 +0000 (05:18 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/ttys

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:13:39 +0000 (05:13 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/motd

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:11:25 +0000 (05:11 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/master.passwd

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 13:11:00 +0000 (05:11 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/etc/gettytab
Work on file usr/othersrc/etc/group

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 11:24:27 +0000 (03:24 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/npx.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 11:22:23 +0000 (03:22 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/pccons.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 11:11:39 +0000 (03:11 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/games/mille/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 11:06:13 +0000 (03:06 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/games/chess/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 11:00:17 +0000 (03:00 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/games/rogue/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:56:27 +0000 (02:56 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/games/dm/dm.conf.0
Work on file usr/othersrc/games/dm/dm.0

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:39:11 +0000 (02:39 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/include/segments.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:36:59 +0000 (02:36 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/stand/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:33:03 +0000 (02:33 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/if_we.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:23:18 +0000 (02:23 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/tip/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:22:06 +0000 (02:22 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/tip/tip.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:21:04 +0000 (02:21 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/tip/cmds.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:18:28 +0000 (02:18 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/tip/cmds.c.rej

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:17:50 +0000 (02:17 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/tip/cmds.c.orig

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 10:02:27 +0000 (02:02 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/elvis/cmd1.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 09:20:51 +0000 (01:20 -0800)]
386BSD 0.1 development
Work on file usr/src/lib/libutil/kvm.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 09:17:36 +0000 (01:17 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/include/pmap.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 09:10:27 +0000 (01:10 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/share/tmac/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 03:29:41 +0000 (19:29 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/gdb/config/i386bsd-dep.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

31 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 01:54:42 +0000 (17:54 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/savecore/savecore.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 01:03:21 +0000 (17:03 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/compile/GENERICISA/symbols.sort

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 01:02:24 +0000 (17:02 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/symbols.raw

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 00:15:01 +0000 (16:15 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/savecore/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Mon, 13 Jul 1992 00:12:23 +0000 (16:12 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/savecore/savecore.8

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 23:27:37 +0000 (15:27 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/pmap.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 22:10:01 +0000 (14:10 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/subr_prf.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 21:48:51 +0000 (13:48 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/compile/GENERICISA/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 19:31:52 +0000 (11:31 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/kern_synch.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 19:06:03 +0000 (11:06 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/tty.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 01:43:07 +0000 (17:43 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/i386/trap.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 00:36:19 +0000 (16:36 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/conf/newvers.sh

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 12 Jul 1992 00:32:04 +0000 (16:32 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/init_main.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sat, 11 Jul 1992 23:30:27 +0000 (15:30 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/include/pc/display.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sat, 11 Jul 1992 21:42:37 +0000 (13:42 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/ld/ld.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sat, 11 Jul 1992 20:09:57 +0000 (12:09 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/lex/COPYING

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sat, 11 Jul 1992 03:48:19 +0000 (19:48 -0800)]
386BSD 0.1 development
Work on file usr/othersrc/public/utree-3.03um/src/typescript

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Thu, 9 Jul 1992 00:08:11 +0000 (16:08 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/kern/kern_execve.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Wed, 8 Jul 1992 19:50:38 +0000 (11:50 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/dmesg/dmesg.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Wed, 8 Jul 1992 19:41:18 +0000 (11:41 -0800)]
386BSD 0.1 development
Work on file usr/src/sbin/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Wed, 8 Jul 1992 00:16:58 +0000 (16:16 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/elvis/config.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Tue, 7 Jul 1992 23:07:31 +0000 (15:07 -0800)]
386BSD 0.1 development
Work on file usr/src/bin/ls/ls.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Tue, 7 Jul 1992 22:52:03 +0000 (14:52 -0800)]
386BSD 0.1 development
Work on file usr/src/libexec/crond/config.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Tue, 7 Jul 1992 07:32:14 +0000 (23:32 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/compile/GENERICISA/swap386bsd.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Tue, 7 Jul 1992 06:41:47 +0000 (22:41 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.bin/login/login.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Tue, 7 Jul 1992 04:31:00 +0000 (20:31 -0800)]
386BSD 0.1 development
Work on file usr/src/usr.sbin/bad144/bad144.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 5 Jul 1992 20:56:03 +0000 (12:56 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/conf/SUMNER

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

32 years ago386BSD 0.1 development
William F. Jolitz [Sun, 5 Jul 1992 20:55:12 +0000 (12:55 -0800)]
386BSD 0.1 development
Work on file usr/src/sys.386bsd/i386/isa/com.c

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1