unix-history/.git
30 years agoThis commit was generated by cvs2svn to track changes on a CVS vendor
Nate Willams [Sat, 29 Jan 1994 19:54:04 +0000 (19:54 +0000)]
This commit was generated by cvs2svn to track changes on a CVS vendor
branch.

30 years agoHenry Spencer's REGEX package modified for vi (bug fixes)
Nate Willams [Sat, 29 Jan 1994 19:54:04 +0000 (19:54 +0000)]
Henry Spencer's REGEX package modified for vi (bug fixes)

30 years agoChanged comment prefix in this imported file to the apprporiate one.
Guido van Rooij [Sat, 29 Jan 1994 18:43:09 +0000 (18:43 +0000)]
Changed comment prefix in this imported file to the apprporiate one.

-Guido

30 years agoShuffled some names on the masthead.
Jordan K. Hubbard [Sat, 29 Jan 1994 15:10:12 +0000 (15:10 +0000)]
Shuffled some names on the masthead.

30 years agoPatch from me to fix bug with Nagel congestion avoidance. Always send ACK
David Greenman [Sat, 29 Jan 1994 12:10:20 +0000 (12:10 +0000)]
Patch from me to fix bug with Nagel congestion avoidance. Always send ACK
when a packet len of < mss is received.

30 years agoFixed bug in dump code that caused the wrong physical page to be dumped.
David Greenman [Sat, 29 Jan 1994 11:17:10 +0000 (11:17 +0000)]
Fixed bug in dump code that caused the wrong physical page to be dumped.

30 years agoPatch from Julian. Commit message by me.
Rod Grimes [Sat, 29 Jan 1994 10:31:20 +0000 (10:31 +0000)]
Patch from Julian.  Commit message by me.

Add CDIOCALLOW and CDIOCPREVENT ioctls.

30 years agoPatch from Julian. Commit message by me.
Rod Grimes [Sat, 29 Jan 1994 10:30:41 +0000 (10:30 +0000)]
Patch from Julian.  Commit message by me.

cd.c:
Initialize channel info in CDIOCSETVOL ioctl.
Correct CDIOCSTOP and CDIOCEJCET ioctls to use scsi_stop_unit
instead of scsi_start_unit.
Add CDIOCALLOW and CDIOCPREVENT ioctls.

ch.h:
Return EBUSY instead of ENXIO if the device is already in use.

scsi_base.c:
Add scsi_stop_unit routine.

sd.c:
Add mising indirection through sc_link to sd_get_parms routine
when checking for media loaded.

st.c:
Return EBUSY instead of ENXIO if the device is already in use.
Clear the SDEV_WAITING flag in ststart if we do the wakeup call.

30 years agoPatch from Julian. Commit message by me.
Rod Grimes [Sat, 29 Jan 1994 10:29:14 +0000 (10:29 +0000)]
Patch from Julian.  Commit message by me.

Cuddle { braces up where possible on if statements
Add missing splx(s) calls before some returns.
Remove extra semicolon that was keeping uha_init from returning
before the timeout occured.  This should speed probing up quite
a bit!

30 years agoAdd Bustec 747 to supported controllers
Rod Grimes [Sat, 29 Jan 1994 10:13:22 +0000 (10:13 +0000)]
Add Bustec 747 to supported controllers

30 years agoadded #ifdef BROKEN_DTR around the "DTR" sleep in setctty(). This inserted
David Greenman [Sat, 29 Jan 1994 04:25:10 +0000 (04:25 +0000)]
added #ifdef BROKEN_DTR around the "DTR" sleep in setctty(). This inserted
a 2 second delay after the probe and before the startup that was
confusing people. Our DTR in the sio driver has been fixed to do the
right thing, so this isn't necessary.

30 years ago Fixed bug introduced by previous bug fix from Christoph Rubitschko. I
David Greenman [Sat, 29 Jan 1994 04:04:26 +0000 (04:04 +0000)]
   Fixed bug introduced by previous bug fix from Christoph Rubitschko. I
still don't like this fix, but a better way to fix this escapes me. Also
defered setting curproc=NULL and freeing of p_limit structs until a little
later in the exit - it seems that it might be possible for the process
to block earlier (and this would be bad).
   Backed out previous "fix" from me to ptcclose as it was probably
bogus and now unnecessary with the fix in kern_exit.

30 years agoSet FIFO_TRIGGER in more human-readable form
Andrey Chernov [Sat, 29 Jan 1994 03:17:39 +0000 (03:17 +0000)]
Set FIFO_TRIGGER in more human-readable form

30 years agoSprinkled with ${.CURDIR} to get the builds of gram.c and tokdefs.h
Wiljo Heinen [Sat, 29 Jan 1994 00:48:19 +0000 (00:48 +0000)]
Sprinkled with ${.CURDIR} to get the builds of gram.c and tokdefs.h
correct.

30 years agoCommented out a private _putchar routine. It seems with static linking the
Andreas Schulz [Sat, 29 Jan 1994 00:34:58 +0000 (00:34 +0000)]
Commented out a private _putchar routine. It seems with static linking the
linker used the last routine with the same name and resolved all references
to that. So it picked up earlier the routines in libcurses. Now it picked
up this routine instead and messed around with the new curses.
This is the bugfix for the tn3270 problems no longer displaying things
correctly.

30 years ago_POSIX_VDISABLE incorrecly defined in two files
Andrey Chernov [Fri, 28 Jan 1994 23:54:58 +0000 (23:54 +0000)]
_POSIX_VDISABLE incorrecly defined in two files
but POSIX says: only <unistd.h>
This fix prevents redefinition and follows POSIX
recommendations, if _STRICT_POSIX defined

30 years agoFrom bde:
Andrey Chernov [Fri, 28 Jan 1994 23:27:19 +0000 (23:27 +0000)]
From bde:
Insufficient parentheses for CCEQ()
VDISABLE changed to more simlest form

30 years ago1) Port NetBSD VMIN/VTIME stuff:
Andrey Chernov [Fri, 28 Jan 1994 23:17:43 +0000 (23:17 +0000)]
1) Port NetBSD VMIN/VTIME stuff:
fix bug in case VMIN=0 && rawq len == 0,
fix bug with missing untimeouts.

2) Fixes from bde:
o Don't export private functions.
o Don't declare externs inside functions.  I moved the declaration
  of `nldisp' to the top of tty.c; it should be declared in some
  header.
o Moved ttywait() deadlock fix from sio.c to here so it doesn't
  harm efficiency and so it works with other drivers.
o Use "cuddle else style" ( "} else"  not "}\n\t..else" ).
o Don't clear TS_TBLOCK before it is used in ttyflush() (your version
  had this from a previous incomplete fix).
o Added long comment about probable botch of TS_ISOPEN and TS_WOPEN
  flags when CLOCAL drops while there is no carrier.
o Added comment about races in ttnread().  Only some callers use
  spltty().  ttselect() doesn't.
o Fixed use of random types (int, long) instead of tcflags_t and
  use of u_char instead of cc_t (you missed the changes in my
  previous diffs).
o "int alt = lflag&ALTWERASE" had the wrong type.  It's only used
  once, so don't use a flag variable for it.
o Fixed (? :-) use of MIN() and min() on integral types.  MIN()
  expands to min() and min() is an (inline) function that really
  only works for u_int types.  "gcc -Wconversion" told me about
  the sign botches.  Of course, a min of -1 would be fatal as
  the count arg for bcopy or bzero.
o Fixed missing loop exit after uiomove() failure in ttwrite()
  (bug introduced in my previous version :-().
o Fixed serious races in ttwrite().  The old clist buffer access
  functions apparently called spltty()/splx() (NetBSD's getc()
  and putc() do it) although this makes them slow.  Lots of
  races were introduced by the non-locking RB_* access macros.
o Cleaned up fix for ECHONL again.
o tp->t_gen is now int; use int for `gen' copy of it too.

30 years ago1) Remove external (really static) decls from tty.c.
Andrey Chernov [Fri, 28 Jan 1994 23:15:17 +0000 (23:15 +0000)]
1) Remove external (really static) decls from tty.c.

2) From bde:
o t_addr and t_mask aren't used.
o Changed most short and char types to int.  gcc warned a lot about
  the t_line being used as an array index.  It was worried about
  unportable sign extensions; I was worried about inefficiency.

30 years agoadded setsid man page.
Christoph Robitschko [Fri, 28 Jan 1994 19:10:59 +0000 (19:10 +0000)]
added setsid man page.

30 years agonow really add daemon and config_* man pages...
Christoph Robitschko [Fri, 28 Jan 1994 19:05:22 +0000 (19:05 +0000)]
now really add daemon and config_* man pages...

30 years agoadded manpages for daemon() and config_*; fixed daemon() return value.
Christoph Robitschko [Fri, 28 Jan 1994 19:04:35 +0000 (19:04 +0000)]
added manpages for daemon() and config_*; fixed daemon() return value.

30 years agofixed panic with creating files in removed direectories
Christoph Robitschko [Fri, 28 Jan 1994 18:26:31 +0000 (18:26 +0000)]
fixed panic with creating files in removed direectories
(mkdir v1; cd v1; rmdir ../v1; touch file).

30 years agoCache fewer objects until the problems with caching more can be
David Greenman [Fri, 28 Jan 1994 18:03:41 +0000 (18:03 +0000)]
Cache fewer objects until the problems with caching more can be
figured out. Might be causing strange problems with running out
of vnodes.

30 years agoAdded note that sys/fs/lfs was removed per Keith Bostic
Rod Grimes [Fri, 28 Jan 1994 08:24:04 +0000 (08:24 +0000)]
Added note that sys/fs/lfs was removed per Keith Bostic

30 years agoFrom: Poul-Henning Kamp <phk@login.dkuug.dk>
Jordan K. Hubbard [Fri, 28 Jan 1994 03:31:16 +0000 (03:31 +0000)]
From: Poul-Henning Kamp <phk@login.dkuug.dk>
Message-Id: <9401271243.AA12534@login.dkuug.dk>
Subject: patch to nlist.h
To: freebsd-hackers@freefall.cdrom.com
Date: Thu, 27 Jan 94 13:43:53 MET

Hi, these macros are missing in /usr/include/nlist.h
please commit.

Poul-Henning

30 years agoCould someone apply this patch to vm/vm_param.h? gbd breaks without it
Jordan K. Hubbard [Fri, 28 Jan 1994 03:28:18 +0000 (03:28 +0000)]
Could someone apply this patch to vm/vm_param.h? gbd breaks without it
and  page_size and page_shift seem to only be known to the kernel.

Gary

30 years agoCompatibility fix to satisfy tn3270.
Andrey Chernov [Fri, 28 Jan 1994 03:10:50 +0000 (03:10 +0000)]
Compatibility fix to satisfy tn3270.

30 years agoCorrected a failure, that i made in the previous commit in the LINK line.
Andreas Schulz [Fri, 28 Jan 1994 02:24:12 +0000 (02:24 +0000)]
Corrected a failure, that i made in the previous commit in the LINK line.
Also forgotten to say, that in the previous commit the file svi/svi_util.c
has changed. It has an include with a pathname in it, that is unecessary
with the "-I" options in the Makefile.

30 years agoChanging all of the occurences of the "vi" and "ex" directory to "vi.d"
Andreas Schulz [Fri, 28 Jan 1994 01:53:56 +0000 (01:53 +0000)]
Changing all of the occurences of the "vi" and "ex" directory to "vi.d"
and "ex.d". This should prevent the problems with the "make cleandir"
and also with a make without a previous "make obj".

30 years agoAdded f2c. I was pretty sure that this has been in before.
Wiljo Heinen [Fri, 28 Jan 1994 01:26:39 +0000 (01:26 +0000)]
Added f2c. I was pretty sure that this has been in before.

30 years agoMinor changes in handling of bootfile names and some fixes that
Martin Renters [Thu, 27 Jan 1994 23:55:14 +0000 (23:55 +0000)]
Minor changes in handling of bootfile names and some fixes that
will hopefully fix the ROM version.

30 years agocanfield has used private variables from curses instead the official
Andreas Schulz [Thu, 27 Jan 1994 22:14:42 +0000 (22:14 +0000)]
canfield has used private variables from curses instead the official
ones. corrected that, needed with the new curses.

30 years agodelete the superfluous _putchar prototype. It is not directly used
Andreas Schulz [Thu, 27 Jan 1994 21:21:09 +0000 (21:21 +0000)]
delete the superfluous _putchar prototype. It is not directly used
in the tn3270 source.

30 years agoAdded -static declartion to genassym compile so a kernel doesn't require
Nate Willams [Thu, 27 Jan 1994 21:10:14 +0000 (21:10 +0000)]
Added -static declartion to genassym compile so a kernel doesn't require
working shlibs.

30 years agoThis is Patch01 to Cron-3.0. Please apply it. Changes are:
Nate Willams [Thu, 27 Jan 1994 19:18:58 +0000 (19:18 +0000)]
This is Patch01 to Cron-3.0.  Please apply it.  Changes are:

Some of the documentation has been reformatted to fit in 80 char lines;
it has also been corrected on some NeXT system and general environment
variable details.

The EDITOR (or VISUAL) environment variable is now allowed to have
multiple tokens in it when running "crontab -e".

Some more code has been reformatted to the BSD style.

A bug was fixed in the way environment variables were searched.

[ Nate's comments:

I also chose to add the FEATURES file to our distribution as it
documents some features that are not present in previous BSD cron's

]

30 years agoThis is Patch01 to Cron-3.0. Please apply it. Changes are:
Nate Willams [Thu, 27 Jan 1994 19:06:16 +0000 (19:06 +0000)]
This is Patch01 to Cron-3.0.  Please apply it.  Changes are:

Some of the documentation has been reformatted to fit in 80 char lines;
it has also been corrected on some NeXT system and general environment
variable details.

The EDITOR (or VISUAL) environment variable is now allowed to have
multiple tokens in it when running "crontab -e".

Some more code has been reformatted to the BSD style.

A bug was fixed in the way environment variables were searched.

30 years agoRemoved no longer used "wire" element in pv struct.
David Greenman [Thu, 27 Jan 1994 03:36:14 +0000 (03:36 +0000)]
Removed no longer used "wire" element in pv struct.

30 years agoMade pmap_is_managed a static inline function.
David Greenman [Thu, 27 Jan 1994 03:35:42 +0000 (03:35 +0000)]
Made pmap_is_managed a static inline function.

30 years agoRemove obsoleted floppy partition from device name.
Andrey Chernov [Thu, 27 Jan 1994 02:58:05 +0000 (02:58 +0000)]
Remove obsoleted floppy partition from device name.

30 years agoAdd FIFO_TRIGGER value for sio.c
Andrey Chernov [Thu, 27 Jan 1994 01:01:22 +0000 (01:01 +0000)]
Add FIFO_TRIGGER value for sio.c

30 years agofdformat added.
Andrey Chernov [Wed, 26 Jan 1994 23:50:58 +0000 (23:50 +0000)]
fdformat added.

30 years agoAdded creation of a symlink for ttyv0->vga when making the 'pc0' target.
David Greenman [Wed, 26 Jan 1994 23:45:34 +0000 (23:45 +0000)]
Added creation of a symlink for ttyv0->vga when making the 'pc0' target.

30 years agoWe got now floppy formatter
Andrey Chernov [Wed, 26 Jan 1994 23:44:34 +0000 (23:44 +0000)]
We got now floppy formatter

30 years agoThis commit was generated by cvs2svn to track changes on a CVS vendor
Andrey Chernov [Wed, 26 Jan 1994 23:44:34 +0000 (23:44 +0000)]
This commit was generated by cvs2svn to track changes on a CVS vendor
branch.

30 years agoCompletely clear t_state on pty close. The previous code only cleared
David Greenman [Wed, 26 Jan 1994 21:23:50 +0000 (21:23 +0000)]
Completely clear t_state on pty close. The previous code only cleared
carrier, and this resulted in the pty not being initialized at all on
the next 'initial' open; bad things resulted.

30 years agoBack out the last patch for the "-f" flag. It is wrong for POSIX.
Andreas Schulz [Wed, 26 Jan 1994 21:22:58 +0000 (21:22 +0000)]
Back out the last patch for the "-f" flag. It is wrong for POSIX.

30 years agoRemove confusing and incorrect comment inherited from patchkit days.
David Greenman [Wed, 26 Jan 1994 20:42:35 +0000 (20:42 +0000)]
Remove confusing and incorrect comment inherited from patchkit days.

30 years agoRemoved explicit setting of BINDIR now that it resides in /usr/libexec.
Nate Willams [Wed, 26 Jan 1994 20:32:10 +0000 (20:32 +0000)]
Removed explicit setting of BINDIR now that it resides in /usr/libexec.

30 years agoWhoops, syntax error where I forgot a parenthesis.
Nate Willams [Wed, 26 Jan 1994 20:18:56 +0000 (20:18 +0000)]
Whoops, syntax error where I forgot a parenthesis.

30 years agoReplace old-style Joerg copyright to berkeley-style,
Andrey Chernov [Wed, 26 Jan 1994 20:08:30 +0000 (20:08 +0000)]
Replace old-style Joerg copyright to berkeley-style,
per Joerg request.

30 years agoChanged vrele() calls to vn_close() for the controlling terminal and the
Christoph Robitschko [Wed, 26 Jan 1994 19:47:41 +0000 (19:47 +0000)]
Changed vrele() calls to vn_close() for the controlling terminal and the
trace file. Previously, the device close function was not always called
when a device was the controlling terminal of a process.

30 years agoMake rm always return success with the "-f" flag set. Can someone
Andreas Schulz [Wed, 26 Jan 1994 19:23:09 +0000 (19:23 +0000)]
Make rm always return success with the "-f" flag set. Can someone
with a POSIX manual check if that is conforming ?

30 years agoCompatibility fix to satisfy libg++
Andrey Chernov [Wed, 26 Jan 1994 13:39:51 +0000 (13:39 +0000)]
Compatibility fix to satisfy libg++

30 years agoAdded ./ in front of yearistype command string. It wasn't being
Paul Richards [Wed, 26 Jan 1994 11:03:19 +0000 (11:03 +0000)]
Added ./ in front of yearistype command string. It wasn't being
found when you don't have . in your path and the install was
therefore failing on the australasia file.

30 years agoFreeBSD modifications to driver.
Nate Willams [Wed, 26 Jan 1994 09:13:56 +0000 (09:13 +0000)]
FreeBSD modifications to driver.
0) FreeBSD additional include files additions
1) Rod's arpacom changes
2) Function type and return code cleanup, and all functions have correct
   casting to the correct data types
3) Bugfix where driver would not function due to missing structure not
   given a value.
4) General cleanup.  (Theo did a lot already, I just did some more)

30 years agoNewer version of Herb Peyerl's 3C509 driver straight from NetBSD-current.
Nate Willams [Wed, 26 Jan 1994 09:06:29 +0000 (09:06 +0000)]
Newer version of Herb Peyerl's 3C509 driver straight from NetBSD-current.

30 years agoI cleaned this up and applied it.
Rod Grimes [Wed, 26 Jan 1994 03:50:15 +0000 (03:50 +0000)]
I cleaned this up and applied it.

>From: Julian Howard Stacey <stacey@guug.de>
Subject: patch for src/Makefile as find obj on local & ports failed
Date: Mon, 24 Jan 1994 17:20:10 +0100

Here's a patch for src/Makefile as find obj on local & ports failed
in the case that src/local or src/ports was a sym link

30 years agoRemoved LINEMODE option. It is very buggy (doesn't even work with it's own
David Greenman [Wed, 26 Jan 1994 00:51:56 +0000 (00:51 +0000)]
Removed LINEMODE option. It is very buggy (doesn't even work with it's own
telnet!), and seems to not get along with older telnet clients.

30 years agoRemoved KLUDGELINEMODE option.
David Greenman [Wed, 26 Jan 1994 00:49:24 +0000 (00:49 +0000)]
Removed KLUDGELINEMODE option.

30 years agoFix error with tsleep loop
Andrey Chernov [Tue, 25 Jan 1994 23:04:27 +0000 (23:04 +0000)]
Fix error with tsleep loop

30 years agoAdded bootpd program from NetBSD. Supplied by Michael Reifenberg
Martin Renters [Tue, 25 Jan 1994 22:53:49 +0000 (22:53 +0000)]
Added bootpd program from NetBSD. Supplied by Michael Reifenberg

30 years agoPut some more info about the toshiba ethernet cards into if_edreg.h.
Andreas Schulz [Tue, 25 Jan 1994 22:52:09 +0000 (22:52 +0000)]
Put some more info about the toshiba ethernet cards into if_edreg.h.
Changed some numeric constants to defines in if_ed.c for the toshiba
cards.

30 years agoAdded bootpd target
Martin Renters [Tue, 25 Jan 1994 22:51:39 +0000 (22:51 +0000)]
Added bootpd target

30 years agoAdded support for non-POSIX speeds 57600 and 1152000 if they are defined
Nate Willams [Tue, 25 Jan 1994 18:49:14 +0000 (18:49 +0000)]
Added support for non-POSIX speeds 57600 and 1152000 if they are defined
in the same manner as EXTA and EXTB are supported.

30 years agoThe system default crontab now resides in /etc/crontab, and I changed it's
Nate Willams [Tue, 25 Jan 1994 17:27:03 +0000 (17:27 +0000)]
The system default crontab now resides in /etc/crontab, and I changed it's
mode to 644 as most unix systems allow you to read root's crontab.

30 years agoFixed typing error.
Christoph Robitschko [Tue, 25 Jan 1994 16:15:30 +0000 (16:15 +0000)]
Fixed typing error.

30 years agofixed segmentation fault when connecting to nowhere.
Christoph Robitschko [Tue, 25 Jan 1994 16:04:54 +0000 (16:04 +0000)]
fixed segmentation fault when connecting to nowhere.
Also changed all gets() to fgets().

30 years agoDo my fix that I have done to all the other ethernet drivers to use
Rod Grimes [Tue, 25 Jan 1994 11:20:06 +0000 (11:20 +0000)]
Do my fix that I have done to all the other ethernet drivers to use
arpcom intead of foo_ac, remove now unneeded defines, fix support for
options NS.

Still one compiler warning to fix :-)

30 years agoMoved netrmp back out of the Attic, and put the lines back in here for it.
Rod Grimes [Tue, 25 Jan 1994 11:16:01 +0000 (11:16 +0000)]
Moved netrmp back out of the Attic, and put the lines back in here for it.

30 years agoDisabled sg disk driver in LINT since there is no sg.c file in isa yet!
Rod Grimes [Tue, 25 Jan 1994 11:08:25 +0000 (11:08 +0000)]
Disabled sg disk driver in LINT since there is no sg.c file in isa yet!

Removed com port comments, since we are about to depricate the driver.

Fix several plaes in LINT where people have been cutting and pasting using
xterms :-(

30 years ago>From: Guy Helmer <ghelmer@alpha.dsu.edu>
Rod Grimes [Tue, 25 Jan 1994 04:14:24 +0000 (04:14 +0000)]
>From: Guy Helmer <ghelmer@alpha.dsu.edu>
Date: Mon, 24 Jan 1994 21:14:25 -0600 (CST)

Could you add ftp.dsu.edu:/pub/FreeBSD to the list of MIRRORS, with
myself as the maintainer?  Thanks!

30 years agoSound driver options added
Andrey Chernov [Tue, 25 Jan 1994 03:16:31 +0000 (03:16 +0000)]
Sound driver options added

30 years agoUpdate email addres for ftp.nl.net per Paul Schenkeveld <pauls@inter.nl.net>
Rod Grimes [Tue, 25 Jan 1994 02:54:42 +0000 (02:54 +0000)]
Update email addres for ftp.nl.net per Paul Schenkeveld <pauls@inter.nl.net>
to be archive@nl.net so the site mailing list gets the info :-)

30 years agoMan page for new curses updated
Andrey Chernov [Tue, 25 Jan 1994 02:48:16 +0000 (02:48 +0000)]
Man page for new curses updated

30 years agoNew BSD 4.4 curses is coming.
Andrey Chernov [Tue, 25 Jan 1994 02:42:29 +0000 (02:42 +0000)]
New BSD 4.4 curses is coming.

What is done:

1) A *lot* of work to make this curses compatible with old programs :-(
IMHO, this guys from Berkeley wants to kill all old curses-related soft.
It was hard work, especially for all that junk from /usr/games.
Now all system curses pgms runs OK without any modifications.
I don't test /usr/ports pgms. If smbdy find any curses error there,
please contact me.

2) Make this curses 8-bit clean. This jobs already done at 95%
by Berkeley guys, so I do only 5%.

3) Fix error with addch() yet one char in lower left screen corner.
addch() must return ERR, if window not scrollable. Some pgms use this
feature.

4) Fix error with EOF returned in getch/getstr.

30 years agoFix error with creating scorefile
Andrey Chernov [Tue, 25 Jan 1994 01:58:08 +0000 (01:58 +0000)]
Fix error with creating scorefile

30 years agoMoved init safely out of the way before installing a new version to make
Nate Willams [Tue, 25 Jan 1994 01:35:58 +0000 (01:35 +0000)]
Moved init safely out of the way before installing a new version to make
sure we don't get EXTBUSY errors or binary corruption.

30 years agoRemoved the private clean target in the Makefile and added the files
Andreas Schulz [Tue, 25 Jan 1994 01:10:12 +0000 (01:10 +0000)]
Removed the private clean target in the Makefile and added the files
into a "CLEANFILES +=" rule. Now both a make clean and a make cleandir
should work correctly, formerly only a make clean worked.

30 years agoRemoved obsolete .curses-stamp (whoops!).
Jordan K. Hubbard [Tue, 25 Jan 1994 01:07:13 +0000 (01:07 +0000)]
Removed obsolete .curses-stamp (whoops!).

30 years agoRemove LINKS that install elvis as vi. Now you can have `elvis' as elvis
Jordan K. Hubbard [Tue, 25 Jan 1994 00:58:48 +0000 (00:58 +0000)]
Remove LINKS that install elvis as vi.  Now you can have `elvis' as elvis
and `vi' will remain nvi.

30 years agoPut elvis back..
Jordan K. Hubbard [Tue, 25 Jan 1994 00:56:42 +0000 (00:56 +0000)]
Put elvis back..

30 years agoFix uninitialized pointer
Andrey Chernov [Tue, 25 Jan 1994 00:55:00 +0000 (00:55 +0000)]
Fix uninitialized pointer

30 years agoRemove <compat.h> include.
Jordan K. Hubbard [Tue, 25 Jan 1994 00:47:30 +0000 (00:47 +0000)]
Remove <compat.h> include.

30 years agoFixed an error I made a long while back which caused us to link against
Nate Willams [Tue, 25 Jan 1994 00:47:26 +0000 (00:47 +0000)]
Fixed an error I made a long while back which caused us to link against
librpcsvc when libcrypt existed.  We now always link against librpcsvc
and link against libcrypt if it exists.

30 years agoChange <sys/queue.h> to <queue.h> (thanks Nate! I'm falling asleep
Jordan K. Hubbard [Tue, 25 Jan 1994 00:20:37 +0000 (00:20 +0000)]
Change <sys/queue.h> to <queue.h>  (thanks Nate!  I'm falling asleep
over here!).

30 years agoChange gets->fgets
Andrey Chernov [Tue, 25 Jan 1994 00:18:04 +0000 (00:18 +0000)]
Change gets->fgets

30 years agoUpgrade to vi 1.03 (first step - doc still remains).
Jordan K. Hubbard [Mon, 24 Jan 1994 23:45:23 +0000 (23:45 +0000)]
Upgrade to vi 1.03 (first step - doc still remains).

30 years agoFix bug in old K&R style #define
Andrey Chernov [Mon, 24 Jan 1994 22:47:32 +0000 (22:47 +0000)]
Fix bug in old K&R style #define

30 years agoDeprecate "/dev/vga". Use /dev/ttyv0 always. Note that the terminal type
David Greenman [Mon, 24 Jan 1994 20:57:16 +0000 (20:57 +0000)]
Deprecate "/dev/vga". Use /dev/ttyv0 always. Note that the terminal type
is still 'pc3' in /etc/ttys, and should be changed if we decide to default
to syscons.

30 years agoRevert back to -s being the default. Apparantly, POSIX requires this,
David Greenman [Mon, 24 Jan 1994 20:45:41 +0000 (20:45 +0000)]
Revert back to -s being the default. Apparantly, POSIX requires this,
and only _some_ versions of SysV default to -n (Unix V/386 R4.0 being
one of them).

30 years agofixed spelling error.
Christoph Robitschko [Mon, 24 Jan 1994 08:07:33 +0000 (08:07 +0000)]
fixed spelling error.

30 years agoAdded maintainer email address for my ftp server.
Christoph Robitschko [Mon, 24 Jan 1994 08:00:18 +0000 (08:00 +0000)]
Added maintainer email address for my ftp server.

30 years agoGet rid of a few more bytes with TCPDEBUG.
David Greenman [Mon, 24 Jan 1994 07:17:08 +0000 (07:17 +0000)]
Get rid of a few more bytes with TCPDEBUG.

30 years agoMake #includes look in the proper places for the new structure
Rod Grimes [Mon, 24 Jan 1994 06:09:16 +0000 (06:09 +0000)]
Make #includes look in the proper places for the new structure

30 years agoInitial import of NetBSD msdosfs, only changes made where to change the
Rod Grimes [Mon, 24 Jan 1994 06:04:58 +0000 (06:04 +0000)]
Initial import of NetBSD msdosfs, only changes made where to change the
NetBSD $Id$ to be from NetBSD: and to add a new $Id$, this keeps the
NetBSD version number intact so we can know which verions this came from.

30 years agoRemove netrmp from here, it was removed from the sys tree some time ago.
Rod Grimes [Mon, 24 Jan 1994 05:45:09 +0000 (05:45 +0000)]
Remove netrmp from here, it was removed from the sys tree some time ago.

30 years agoInitial versions of what this area is all about and what I need to
Rod Grimes [Mon, 24 Jan 1994 05:40:30 +0000 (05:40 +0000)]
Initial versions of what this area is all about and what I need to
get done.  Only a start.

30 years agoAdd Ctrl-Altr-Esc DBG key to RUKEYMAP (russian keymap)
Andrey Chernov [Mon, 24 Jan 1994 05:22:27 +0000 (05:22 +0000)]
Add Ctrl-Altr-Esc DBG key to RUKEYMAP (russian keymap)

30 years ago1) base number of cache vm objects on NTEXT. Move initialization of
David Greenman [Mon, 24 Jan 1994 05:12:44 +0000 (05:12 +0000)]
1) base number of cache vm objects on NTEXT. Move initialization of
vm_cache_max into param.c.
2) Make tcpdebug truely optional. Previously there was still a stub
routine and a (large) data structure that was allocated even if this
option wasn't in the kernel config. This reduces the kernel bss by 16k.