]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
27 years agoFix typo
guido [Fri, 11 Jul 1997 22:11:13 +0000 (22:11 +0000)]
Fix typo

27 years agoUse /etc/ld.so.conf as a library path override, if it exists.
jkh [Fri, 11 Jul 1997 14:52:52 +0000 (14:52 +0000)]
Use /etc/ld.so.conf as a library path override, if it exists.
Submitted by: Hans Zuidam <hans@brandinnovators.com>

27 years agoAllow ldconfig to accept files (containing directory paths) as well as
jkh [Fri, 11 Jul 1997 14:45:41 +0000 (14:45 +0000)]
Allow ldconfig to accept files (containing directory paths) as well as
directory paths.
Reviewed by: jkh & jdp
Submitted by: Hans Zuidam <hans@brandinnovators.com>

27 years agoSetting eval to 1 after calling warn was the original behaviour.
charnier [Fri, 11 Jul 1997 06:13:18 +0000 (06:13 +0000)]
Setting eval to 1 after calling warn was the original behaviour.

27 years agoFix typo I introduced during last commit.
charnier [Fri, 11 Jul 1997 06:11:35 +0000 (06:11 +0000)]
Fix typo I introduced during last commit.

27 years ago(Part #2, after the Internet link broke totally yesterday.)
joerg [Fri, 11 Jul 1997 05:52:41 +0000 (05:52 +0000)]
(Part #2, after the Internet link broke totally yesterday.)

This is the long-threatened ISO 9660 CD-ROM bootstrap code.

This work has been sponsored by Plutotech International, Inc (who paid
the initial work), and interface business GmbH (where i did most of
the work).  A big thanks also goes to Bruce Evans, for his continuing
help and answering my stupid questions.

The code is basically functioning, with the following caveats:

. Rock Ridge attributes are not yet supported.
. Only SCSI CD-ROMs are supported, since i fail to see any possibility
  to determine the drive type using BIOS functions.  (Even for hard disks,
  this determination is done by a big hack only.)
. El Torito specifies a lot of crap and useless misfeatures, but crucial
  things like the ability to figure out the CD TOC have been ``forgotten''.
  Thus, if you wanna boot a multisession CD, you need to know at which CD
  block your session starts, and need to speciffy it using the @ clause.

. None of the CD-ROM controllers i've seen so far implements the full
  El Torito specification at all.  Adaptec is probably the closest, but
  they miss on non-emulation booting (which would be the most logical
  choice for us).  Thus, the current code bloats the 7.5 KB boot code
  up to 1.44 MB, in order to fake a `floppy' image.

  If you wanna use it, specify this file as the boot image on the
  command-line of the mksiosfs command (option -b).

  Caveat emptor: some versions of the Adaptec BIOS might even fail to
  access the CD-ROM at all, using the BIOS functions.  I think i've
  notice this for ver 1.26, the code has been tested with ver 1.23.

The boot string is as follows:

        [@sess-start] [filename] [-flags]

sess-start      Extend # where the last session starts, measured in
                CD-ROM blocks.

filename        As usual, but the input is case-insensitive by now
                (since we  don't grok RR anyway).

flags           As usual, but -C (use CDROM root f/s) is default, so
                specifying -C will decactivate this option (which is
                probably not what you want :).

A lot of cleanup work is probably required, and some of the files
could/should be merged back to biosboot, perhaps made conditional on
some #ifdef.  The malloc implementation that comes with cdboot might
also be useful for kzipboot.  (I needed a malloc() since the root dir
ain't fixed in size on a CD.)

I've been testing all this with a 2.2-STABLE as the base for biosboot.
I don't expect too many surprises, although i know the biosboot stuff
has been changed a lot in -current lately.  I'm sure Bruce will
comment on all this here anyway. :-)

27 years agoFix breakage induced by read-only copyright string.
jdp [Fri, 11 Jul 1997 02:08:56 +0000 (02:08 +0000)]
Fix breakage induced by read-only copyright string.

Submitted by: Chris Timmons <skynyrd@opus.cts.cwu.edu>

27 years agoThis is the long-threatened ISO 9660 CD-ROM bootstrap code.
joerg [Thu, 10 Jul 1997 21:58:43 +0000 (21:58 +0000)]
This is the long-threatened ISO 9660 CD-ROM bootstrap code.

This work has been sponsored by Plutotech International, Inc (who paid
the initial work), and interface business GmbH (where i did most of
the work).  A big thanks also goes to Bruce Evans, for his continuing
help and answering my stupid questions.

The code is basically functioning, with the following caveats:

. Rock Ridge attributes are not yet supported.
. Only SCSI CD-ROMs are supported, since i fail to see any possibility
  to determine the drive type using BIOS functions.  (Even for hard disks,
  this determination is done by a big hack only.)
. El Torito specifies a lot of crap and useless misfeatures, but crucial
  things like the ability to figure out the CD TOC have been ``forgotten''.
  Thus, if you wanna boot a multisession CD, you need to know at which CD
  block your session starts, and need to speciffy it using the @ clause.

. None of the CD-ROM controllers i've seen so far implements the full
  El Torito specification at all.  Adaptec is probably the closest, but
  they miss on non-emulation booting (which would be the most logical
  choice for us).  Thus, the current code bloats the 7.5 KB boot code
  up to 1.44 MB, in order to fake a `floppy' image.

  If you wanna use it, specify this file as the boot image on the
  command-line of the mksiosfs command (option -b).

  Caveat emptor: some versions of the Adaptec BIOS might even fail to
  access the CD-ROM at all, using the BIOS functions.  I think i've
  notice this for ver 1.26, the code has been tested with ver 1.23.

The boot string is as follows:

[@sess-start] [filename] [-flags]

sess-start Extend # where the last session starts, measured in
CD-ROM blocks.

filename As usual, but the input is case-insensitive by now
(since we  don't grok RR anyway).

flags As usual, but -C (use CDROM root f/s) is default, so
specifying -C will decactivate this option (which is
probably not what you want :).

A lot of cleanup work is probably required, and some of the files
could/should be merged back to biosboot, perhaps made conditional on
some #ifdef.  The malloc implementation that comes with cdboot might
also be useful for kzipboot.  (I needed a malloc() since the root dir
ain't fixed in size on a CD.)

I've been testing all this with a 2.2-STABLE as the base for biosboot.
I don't expect too many surprises, although i know the biosboot stuff
has been changed a lot in -current lately.  I'm sure Bruce will
comment on all this here anyway. :-)

27 years agoAdds sysctl int for shutdown timeout.
davidn [Thu, 10 Jul 1997 11:44:42 +0000 (11:44 +0000)]
Adds sysctl int for shutdown timeout.
Reviewed by: Poul-Henning Kamp <phk@dk.tfs.com>

27 years agoSynchronize with sys/i386/isa/isa.c revision 1.94.
kato [Thu, 10 Jul 1997 10:22:34 +0000 (10:22 +0000)]
Synchronize with sys/i386/isa/isa.c revision 1.94.

27 years agoSynchronize with sys/i386/isa/syscons.c revision 1.223.
kato [Thu, 10 Jul 1997 10:21:47 +0000 (10:21 +0000)]
Synchronize with sys/i386/isa/syscons.c revision 1.223.

27 years agoUse err(3) instead of local redefinition, incorporate `hd' in usage str.
charnier [Thu, 10 Jul 1997 06:48:24 +0000 (06:48 +0000)]
Use err(3) instead of local redefinition, incorporate `hd' in usage str.

27 years agoUse err(3) instead of local redefinition.
charnier [Thu, 10 Jul 1997 06:46:13 +0000 (06:46 +0000)]
Use err(3) instead of local redefinition.

27 years agoUse err(3).
charnier [Thu, 10 Jul 1997 06:45:02 +0000 (06:45 +0000)]
Use err(3).

27 years agoAdd usage(), use err(3).
charnier [Thu, 10 Jul 1997 06:43:41 +0000 (06:43 +0000)]
Add usage(), use err(3).

27 years agoTypo.
charnier [Thu, 10 Jul 1997 06:41:33 +0000 (06:41 +0000)]
Typo.

27 years ago(1) Add preliminary support for architecture/operating system-dependent
asami [Thu, 10 Jul 1997 02:29:51 +0000 (02:29 +0000)]
(1) Add preliminary support for architecture/operating system-dependent
    patches and files.  Note this is just for testing -- I don't
    expect "patches.OpenBSD" or "Makefile.alpha" start cropping up on
    our ports tree just yet!
Pretty much ignored by: the ports/committers list

(2) Add "SH?=/bin/sh" to the list of command-name macros.  Use it.
Checked by: recompiling all packages

27 years agoDelete $Id$ line from copyright.
wosch [Wed, 9 Jul 1997 20:38:19 +0000 (20:38 +0000)]
Delete $Id$ line from copyright.

Submitted: Bruce

27 years agodon't count packets as being transmitted when we know that the sendto()
julian [Wed, 9 Jul 1997 20:33:58 +0000 (20:33 +0000)]
don't count packets as being transmitted when we know that the sendto()
failed (e.g. ENOBUFS)

27 years agoping called printf() from a signal handler..
julian [Wed, 9 Jul 1997 19:40:43 +0000 (19:40 +0000)]
ping called printf() from a signal handler..
this is a NO-NO

re-arange to just set a "please die immediatly" flag in the signal handler
and handle this in the normal thread.

also handle ping -f better on slow links by backing off a bit when
we get a ENOBUFFS from the sendto().

27 years agoBack out 'conflicts' with IRQs, remove intr_registered() decl
ache [Wed, 9 Jul 1997 18:08:15 +0000 (18:08 +0000)]
Back out 'conflicts' with IRQs, remove intr_registered() decl

27 years agoBack out changes for 'conflicts' with IRQ, remove intr_registered()
ache [Wed, 9 Jul 1997 18:06:25 +0000 (18:06 +0000)]
Back out changes for 'conflicts' with IRQ, remove intr_registered()

27 years agoBack out my changes with 'conflicts' keyword for IRQs,
ache [Wed, 9 Jul 1997 17:58:16 +0000 (17:58 +0000)]
Back out my changes with 'conflicts' keyword for IRQs,
sounddriver fixed now.

27 years agoSynchronize with sys/i386/isa/syscons.c revision up to 1.222.
kato [Wed, 9 Jul 1997 14:43:19 +0000 (14:43 +0000)]
Synchronize with sys/i386/isa/syscons.c revision up to 1.222.

27 years agoDon't allow CONS_HISTORY ioctl to alter history pointers
brian [Wed, 9 Jul 1997 14:10:19 +0000 (14:10 +0000)]
Don't allow CONS_HISTORY ioctl to alter history pointers
while in "scroll mode" (return EBUSY).
Suggested by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>

27 years agoMove ports distribution copying for ftp dist into the correct place.
jkh [Wed, 9 Jul 1997 12:45:17 +0000 (12:45 +0000)]
Move ports distribution copying for ftp dist into the correct place.

27 years agoScrewed up again, gotta remember to turn off those debugs!
fsmp [Wed, 9 Jul 1997 05:00:47 +0000 (05:00 +0000)]
Screwed up again, gotta remember to turn off those debugs!

27 years agoGeneral cleanup of APIC code.
fsmp [Tue, 8 Jul 1997 23:46:00 +0000 (23:46 +0000)]
General cleanup of APIC code.
stop_cpus()/restart_cpus() STILL not working!

27 years agoMinor cleanup of APIC code.
fsmp [Tue, 8 Jul 1997 23:42:02 +0000 (23:42 +0000)]
Minor cleanup of APIC code.

27 years agoadded #define IPI_LEVEL
fsmp [Tue, 8 Jul 1997 23:39:02 +0000 (23:39 +0000)]
added #define IPI_LEVEL

27 years agoGeneral cleanup of APIC code.
fsmp [Tue, 8 Jul 1997 23:32:58 +0000 (23:32 +0000)]
General cleanup of APIC code.
stop_cpus/restart_cpus STILL not working!

27 years agoReordered call to apic_initialize and setting invltlb_ok.
fsmp [Tue, 8 Jul 1997 23:25:40 +0000 (23:25 +0000)]
Reordered call to apic_initialize and setting invltlb_ok.

27 years agoFixed buffer overflow.
dima [Tue, 8 Jul 1997 21:03:16 +0000 (21:03 +0000)]
Fixed buffer overflow.

Reviewed by: Warner

27 years agoexecve of interpreter files
adam [Tue, 8 Jul 1997 18:27:38 +0000 (18:27 +0000)]
execve of interpreter files
reword for grammar/clarity

27 years agoRemove 'conflicts' keyword from SB family devices, it is not
ache [Tue, 8 Jul 1997 15:39:29 +0000 (15:39 +0000)]
Remove 'conflicts' keyword from SB family devices, it is not
needed now. Uncomment awe0 device

27 years agoDon't pass configured information back to ISA for this subdevices,
ache [Tue, 8 Jul 1997 15:35:28 +0000 (15:35 +0000)]
Don't pass configured information back to ISA for this subdevices,
it cause conflicts

27 years agoRemove useless comparison.
brian [Tue, 8 Jul 1997 13:38:58 +0000 (13:38 +0000)]
Remove useless comparison.

Suggested by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>

27 years agoMove logwtmp(shutdown) call before any real action in death().
ache [Tue, 8 Jul 1997 11:51:11 +0000 (11:51 +0000)]
Move logwtmp(shutdown) call before any real action in death().

27 years agoUse err(3), remove unused variables.
charnier [Tue, 8 Jul 1997 11:05:59 +0000 (11:05 +0000)]
Use err(3), remove unused variables.

27 years agoUse err(3) instead of local redefinition.
charnier [Tue, 8 Jul 1997 11:04:19 +0000 (11:04 +0000)]
Use err(3) instead of local redefinition.

27 years agoUse err(3).
charnier [Tue, 8 Jul 1997 11:02:48 +0000 (11:02 +0000)]
Use err(3).

27 years agoUse err(3). Add prototypes.
charnier [Tue, 8 Jul 1997 11:01:35 +0000 (11:01 +0000)]
Use err(3). Add prototypes.

27 years agoAdd usage(), use err(3).
charnier [Tue, 8 Jul 1997 10:59:50 +0000 (10:59 +0000)]
Add usage(), use err(3).

27 years agoiso codes need to be in bin distribution for tzsetup
pst [Tue, 8 Jul 1997 00:46:32 +0000 (00:46 +0000)]
iso codes need to be in bin distribution for tzsetup

27 years agoDon't add an item to the multicast linked list if it's already
julian [Mon, 7 Jul 1997 17:36:06 +0000 (17:36 +0000)]
Don't add an item to the multicast linked list if it's already
on the list.

27 years agoifdef a TEST_CPUSTOP debug properly.
fsmp [Mon, 7 Jul 1997 16:34:22 +0000 (16:34 +0000)]
ifdef a TEST_CPUSTOP debug properly.

Submitted by:  Kenneth Merry <ken@plutotech.com>

27 years agoYAMF2.2: Handle indirect results of "kbdcontrol -h X"
brian [Mon, 7 Jul 1997 13:42:42 +0000 (13:42 +0000)]
YAMF2.2: Handle indirect results of "kbdcontrol -h X"
         where X < 25.

27 years agoEnables scmouse.
kato [Mon, 7 Jul 1997 12:47:36 +0000 (12:47 +0000)]
Enables scmouse.

Submitted by: H. Nokubi <h-nokubi@nmit.tmg.nec.co.jp>
              T. Yamamoto <t-yamamt@ics.es.osaka-u.ac.jp>
              M. Jinbo <karl@marcer.nagaokaut.ac.jp>

27 years agoOpps, forgot to turn off the debugs...
fsmp [Mon, 7 Jul 1997 00:38:58 +0000 (00:38 +0000)]
Opps, forgot to turn off the debugs...

27 years agostop_cpus(), currently BROKEN! (turned off in smptests.h by default).
fsmp [Mon, 7 Jul 1997 00:06:51 +0000 (00:06 +0000)]
stop_cpus(), currently BROKEN! (turned off in smptests.h by default).
restart_cpus(), currently BROKEN! (turned off in smptests.h by default).

27 years agoPreliminary support for Xspuriousint.
fsmp [Sun, 6 Jul 1997 23:59:31 +0000 (23:59 +0000)]
Preliminary support for Xspuriousint.
Preliminary support for stopcpus()/restartcpus().

27 years agoAdded some (temporary) macros for debugging.
fsmp [Sun, 6 Jul 1997 23:50:12 +0000 (23:50 +0000)]
Added some (temporary) macros for debugging.
New strategy for handling the TPR (Task Priority Register).
Test code to sync CPUs.

27 years agoAdditional debugging functions and macros.
fsmp [Sun, 6 Jul 1997 23:40:15 +0000 (23:40 +0000)]
Additional debugging functions and macros.
"spurious INTerrupt" support.

27 years agoFirst cut at code for handling "spurious INTerrupts".
fsmp [Sun, 6 Jul 1997 23:32:38 +0000 (23:32 +0000)]
First cut at code for handling "spurious INTerrupts".
First cut at code for handling CPU stop/restart.

Notes:
not working properly yet.

27 years ago#ifdef out debug for now...
fsmp [Sun, 6 Jul 1997 23:25:46 +0000 (23:25 +0000)]
#ifdef out debug for now...

27 years agoAdded a hook for a "spurious INTerrupt handler".
fsmp [Sun, 6 Jul 1997 22:11:26 +0000 (22:11 +0000)]
Added a hook for a "spurious INTerrupt handler".

27 years agoRework previous commit.. I was confused by the number of diffs in the PR
peter [Sun, 6 Jul 1997 08:42:37 +0000 (08:42 +0000)]
Rework previous commit..  I was confused by the number of diffs in the PR
and forgot what I was trying to do originally and accidently zapped
a feature. :-]  The problem is that we are converting a counted buffer in
a malloc pool into a null terminated C-style string.  I was calling realloc
originally to shrink the buffer to the desired size.  If realloc failed, we
still returned the valid buffer - the only thing wrong was it was a tad
too large.  The previous commit disabled this.

This commit now handles the three cases..
1: the buffer is exactly right for the null byte to terminate the
string (we don't call realloc).
2: it's got h.left = 0, so we must expand it to make room. If realloc
fails here, it's fatal.
3: if there's too much room, we realloc to shrink it - a failed realloc
is not fatal, we use the original buffer which is still valid.

27 years agoUpdate description of rand_args to not suggest "-s"..
peter [Sun, 6 Jul 1997 08:28:34 +0000 (08:28 +0000)]
Update description of rand_args to not suggest "-s"..

Pointed out by: bde

27 years agoFix off-by-one error
peter [Sun, 6 Jul 1997 07:54:56 +0000 (07:54 +0000)]
Fix off-by-one error

PR: 3451
Submitted by: Tim Vanderhoek <ac199@hwcn.org>

27 years agoMajor IPXrouted rework.
jhay [Sun, 6 Jul 1997 07:38:36 +0000 (07:38 +0000)]
Major IPXrouted rework.

In rt_change() remember to update the interface pointer otherwise we will
send the RIP packets to the wrong interface(s) in future.

Update the hash generator and increase the size of the hash tables.

Only use the network and host parts when comparing IPX interface addresses.

Immediately broadscast RIP and SAP changes.

Change the alarm code to use the setitimer() call and only set a flag in
the alarm signal handler. This gets rid of possible race conditions.

Remove the host routing table. IPX RIP cannot do host routes, only net routes.

Make the delay between broadcast packets 50ms. It seems that some Netware
4.x servers is very slow and don't have much input buffering.

Handle received messages about networks and services that go down, better.

Add tracing of RIP and SAP changes. It gets sysloged with a level of
LOG_DEBUG.

27 years agofix rndcontrol invocation.. rndcontrol has the irq after a -s switch, not
peter [Sun, 6 Jul 1997 07:19:14 +0000 (07:19 +0000)]
fix rndcontrol invocation..  rndcontrol has the irq after a -s switch, not
just the next argument.  We really need to be able to tag drivers with
their randomness "suitability" so that this can be more automatic.  It
would be nice if all suitable drivers registered their irq automatically,
but still allowed them to be turned on/off etc.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27241,
bde [Sun, 6 Jul 1997 06:54:14 +0000 (06:54 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27241,
which included commits to RCS files with non-trunk default branches.

27 years agoFinish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
bde [Sun, 6 Jul 1997 06:54:14 +0000 (06:54 +0000)]
Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
pascal and vmstat.sparc.  All changed files on the vendor branch should
already have been imported.

27 years agoFinish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
bde [Sun, 6 Jul 1997 06:54:14 +0000 (06:54 +0000)]
Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
pascal and vmstat.sparc.  All changed files on the vendor branch should
already have been imported.

27 years agoFinish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
bde [Sun, 6 Jul 1997 06:54:14 +0000 (06:54 +0000)]
Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,
pascal and vmstat.sparc.  All changed files on the vendor branch should
already have been imported.

27 years agoImport from Lite2 again to fix up mis-importing of Lite2's bdes.
bde [Sun, 6 Jul 1997 06:27:25 +0000 (06:27 +0000)]
Import from Lite2 again to fix up mis-importing of Lite2's bdes.
This leaves a bogus rev.1.1.1.2.

27 years agoRemoved mis-imported files.
bde [Sun, 6 Jul 1997 06:15:35 +0000 (06:15 +0000)]
Removed mis-imported files.

27 years agoImport Lite2's src/usr.bin/bdes. This was too hard to check at home
bde [Sun, 6 Jul 1997 06:06:57 +0000 (06:06 +0000)]
Import Lite2's src/usr.bin/bdes.  This was too hard to check at home
since bdes is not on the export cdrom.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27237,
bde [Sun, 6 Jul 1997 06:06:57 +0000 (06:06 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27237,
which included commits to RCS files with non-trunk default branches.

27 years agoImport Lite2's src/usr.bin/bdes. This was too hard to check at home
bde [Sun, 6 Jul 1997 06:06:57 +0000 (06:06 +0000)]
Import Lite2's src/usr.bin/bdes.  This was too hard to check at home
since bdes is not on the export cdrom.

27 years agoImport Lite2's src/usr.bin/tn3270. mset/3270.5 is still on the vendor
bde [Sun, 6 Jul 1997 05:25:43 +0000 (05:25 +0000)]
Import Lite2's src/usr.bin/tn3270.  mset/3270.5 is still on the vendor
branch and importing it just changes the formatting.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27235,
bde [Sun, 6 Jul 1997 05:25:43 +0000 (05:25 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27235,
which included commits to RCS files with non-trunk default branches.

27 years agoImport Lite2's src/usr.bin/telnet. The README is still on the vendor
bde [Sun, 6 Jul 1997 05:14:28 +0000 (05:14 +0000)]
Import Lite2's src/usr.bin/telnet.  The README is still on the vendor
branch and importing it gives some anachronisms.  tn3270.c is still on
the vendor branch and importing it just changes a memcpy to memmove.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27233,
bde [Sun, 6 Jul 1997 05:14:28 +0000 (05:14 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27233,
which included commits to RCS files with non-trunk default branches.

27 years agoMerge from Lite2 (print "??" instead NULL if devname() fails). More
bde [Sun, 6 Jul 1997 04:37:22 +0000 (04:37 +0000)]
Merge from Lite2 (print "??" instead NULL if devname() fails).  More
faithful stealing from pstat would have given this already.

27 years agoImporting Lite2 broke lookup() to return -1 for the nmatches == 0 case.
bde [Sun, 6 Jul 1997 04:13:20 +0000 (04:13 +0000)]
Importing Lite2 broke lookup() to return -1 for the nmatches == 0 case.
Fixed.

27 years agoImport Lite2's src/usr.bin/systat. cmds.c is still on the vendor branch
bde [Sun, 6 Jul 1997 04:02:30 +0000 (04:02 +0000)]
Import Lite2's src/usr.bin/systat.  cmds.c is still on the vendor branch
and this import just breaks it.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27229,
bde [Sun, 6 Jul 1997 04:02:30 +0000 (04:02 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27229,
which included commits to RCS files with non-trunk default branches.

27 years agoImport Lite2's src/usr.bin/leave. The man page is still on the vendor
bde [Sun, 6 Jul 1997 03:45:58 +0000 (03:45 +0000)]
Import Lite2's src/usr.bin/leave.  The man page is still on the vendor
branch and this import just makes a cosmetic change.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27227,
bde [Sun, 6 Jul 1997 03:45:58 +0000 (03:45 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27227,
which included commits to RCS files with non-trunk default branches.

27 years agoMerge from Lite2 (reject widths <= 0 instead of pretending that they are 80).
bde [Sun, 6 Jul 1997 03:39:37 +0000 (03:39 +0000)]
Merge from Lite2 (reject widths <= 0 instead of pretending that they are 80).

27 years agoImport Lite2's src/usr.bin/banner. The man page is still on the vendor
bde [Sun, 6 Jul 1997 03:28:40 +0000 (03:28 +0000)]
Import Lite2's src/usr.bin/banner.  The man page is still on the vendor
branch and this import converts it to mdoc format.

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27224,
bde [Sun, 6 Jul 1997 03:28:40 +0000 (03:28 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27224,
which included commits to RCS files with non-trunk default branches.

27 years agoDefault to `cksum' instead of to `sum' for unusual program names.
bde [Sun, 6 Jul 1997 03:18:13 +0000 (03:18 +0000)]
Default to `cksum' instead of to `sum' for unusual program names.
Mention `sum' in the usage message.

27 years agoMerge from Lite2 (make the command `sum' an alias for `cksum -o 1', and
bde [Sun, 6 Jul 1997 03:03:10 +0000 (03:03 +0000)]
Merge from Lite2 (make the command `sum' an alias for `cksum -o 1', and
reject -o args other than "1" or "2").

27 years agoThis is an upgrade so that the kernel supports the AIO calls from
dyson [Sun, 6 Jul 1997 02:40:43 +0000 (02:40 +0000)]
This is an upgrade so that the kernel supports the AIO calls from
POSIX.4.  Additionally, there is some initial code that supports LIO.
This code supports AIO/LIO for all types of file descriptors, with
few if any restrictions.  There will be a followup very soon that
will support significantly more efficient operation for VCHR type
files (raw.)  This code is also dependent on some kernel features
that don't work under SMP yet.  After I commit the changes to the
kernel to support proper address space sharing on SMP, this code
will also work under SMP.

27 years agoImport Lite2's src/usr.bin/cksum. The Makefile is still on the vendor
bde [Sun, 6 Jul 1997 02:22:28 +0000 (02:22 +0000)]
Import Lite2's src/usr.bin/cksum.  The Makefile is still on the vendor
branch and will temporarily give bogus hard links cksum[.1] -> sum[.1].

27 years agoThis commit was generated by cvs2svn to compensate for changes in r27219,
bde [Sun, 6 Jul 1997 02:22:28 +0000 (02:22 +0000)]
This commit was generated by cvs2svn to compensate for changes in r27219,
which included commits to RCS files with non-trunk default branches.

27 years agoMerge from 2.2 (tcp extensions in phase 1)
pst [Sun, 6 Jul 1997 00:33:34 +0000 (00:33 +0000)]
Merge from 2.2 (tcp extensions in phase 1)

27 years agoSupport message of last database update.
wosch [Sat, 5 Jul 1997 20:23:53 +0000 (20:23 +0000)]
Support message of last database update.

27 years ago1. Replace malloc+bzero by calloc
ache [Sat, 5 Jul 1997 19:36:55 +0000 (19:36 +0000)]
1. Replace malloc+bzero by calloc
2. Revoke internal active session list only now, not whole /etc/ttys

27 years agonetstart should really only do phase 1 bringup, not start all the daemons
pst [Sat, 5 Jul 1997 19:35:45 +0000 (19:35 +0000)]
netstart should really only do phase 1 bringup, not start all the daemons

27 years agonetstart wasn't getting installed
pst [Sat, 5 Jul 1997 19:35:22 +0000 (19:35 +0000)]
netstart wasn't getting installed

27 years agoAdd -D_NEW_VFSCONF to eliminate compilation warning
ache [Sat, 5 Jul 1997 19:34:51 +0000 (19:34 +0000)]
Add -D_NEW_VFSCONF to eliminate compilation warning

27 years agoRemove addgroup/rmgroup -- they are completely replaced by pw(1).
pst [Sat, 5 Jul 1997 19:12:45 +0000 (19:12 +0000)]
Remove addgroup/rmgroup -- they are completely replaced by pw(1).

Adduser/rmuser stay for now until we get a good user-friendly front-end
for pw.

27 years agoSend these files to the attic until they are in use for several reasons.
peter [Sat, 5 Jul 1997 15:44:29 +0000 (15:44 +0000)]
Send these files to the attic until they are in use for several reasons.
1: cvs and cvsup don't really support vendor branches other than 1.1.1.x,
this is on 1.1.2.x and causing problems in cvsup 'checkout mode', just the
same as cvs has problems interpreting dates. (cvs has "1.1.1" hard coded)
2: cvs 'rm'ing them takes them off the vendor branch and should hide the
above problems.
3: it's just clutter until the merge is done.
4: if the problem isn't sufficiently resolved by taking these off the
vendor branch, the files will have to be nuked and re-imported.

27 years ago.if exists(../eBones) tests the obj dir, not the source dir's existance.
peter [Sat, 5 Jul 1997 14:22:15 +0000 (14:22 +0000)]
.if exists(../eBones) tests the obj dir, not the source dir's existance.
The existance of a stale obj dir does not imply the source too.

27 years agoApply Bill Fenner's patch for the lost vendor branch bug - I've looked
peter [Sat, 5 Jul 1997 02:15:42 +0000 (02:15 +0000)]
Apply Bill Fenner's patch for the lost vendor branch bug - I've looked
over the code too and it makes sense to me.

PR: 4033

27 years agoFixed description of -cv.
bde [Sat, 5 Jul 1997 02:08:09 +0000 (02:08 +0000)]
Fixed description of -cv.

27 years agoDocument recent changes (config files and -D...) and not so recent changes
bde [Sat, 5 Jul 1997 02:02:02 +0000 (02:02 +0000)]
Document recent changes (config files and -D...) and not so recent changes
(bios drive number...).

Submitted by: mostly by yokota