Conditionalize some annoying debug statements, update the docs.

This commit is contained in:
Jordan K. Hubbard 1996-08-23 07:56:06 +00:00
parent 55d423f3ad
commit fc8cb16597
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17791
12 changed files with 39 additions and 31 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: cdrom.c,v 1.20 1996/07/13 05:48:44 jkh Exp $
* $Id: cdrom.c,v 1.21 1996/07/16 17:11:38 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -124,7 +124,8 @@ mediaGetCDROM(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from CDROM\n", file);
if (isDebug())
msgDebug("Request for %s from CDROM\n", file);
snprintf(buf, PATH_MAX, "/cdrom/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: dos.c,v 1.12 1996/04/28 03:26:54 jkh Exp $
* $Id: dos.c,v 1.13 1996/07/08 08:54:25 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -82,7 +82,8 @@ mediaGetDOS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from DOS\n", file);
if (isDebug())
msgDebug("Request for %s from DOS\n", file);
snprintf(buf, PATH_MAX, "/dos/freebsd/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -1,4 +1,4 @@
Hardware Documentation Guide: $Id: hardware.hlp,v 1.6 1996/07/05 01:24:38 jkh Exp $
Hardware Documentation Guide: $Id: hardware.hlp,v 1.7 1996/07/10 09:41:18 jkh Exp $
Contents last changed: July 4th, 1996
@ -89,7 +89,7 @@ lpt1 dyn dyn n/a n/a Printer Port 1
de0 n/a n/a n/a n/a DEC DC21x40 PCI based cards
(including 21140 100bT cards)
ed0 280 5 dyn d8000 WD & SMC 80xx; Novell NE1000 &
NE2000; 3Com 3C503
NE2000; 3Com 3C503; HP PC Lan+
ed1 300 5 dyn d8000 Same as ed0
eg0 310 5 dyn dyn 3Com 3C505
ep0 300 10 dyn dyn 3Com 3C509

View File

@ -1,9 +1,13 @@
RELEASE NOTES
FreeBSD Release 2.2 SNAPSHOT
0. What's new since 2.2-960501-SNAP?
0. What's new since 2.2-960801-SNAP?
------------------------------------
Support for HP PC Lan+ cards (model numbers: 27247B and 27252A)
1. What's New since 2.1.0-RELEASE?
----------------------------------
A considerable number of changes to the VM system have been made
to increase the stability under certain types of load. If you
had panics under the last snapshot, try this one and see if they
@ -15,12 +19,6 @@ gracefully.
More cosmetic work on the installation, /stand/sysinstall now genuinely
useful after installation time (though still missing a man page - urk!).
Basically, lots-o-fixes.
1. What's New since 2.1.0-RELEASE?
----------------------------------
Early support for APM (automated power management) and PCCARD
(formerly PCMCIA) features of laptops. Many PCCARD devices
are supported, from modems to ethernet cards to SCSI adaptors.
@ -511,4 +509,4 @@ We sincerely hope you enjoy this release of FreeBSD!
The FreeBSD Core Team
$Id: relnotes.hlp,v 1.9 1996/06/27 07:13:45 jkh Exp $
$Id: relnotes.hlp,v 1.10 1996/07/05 01:24:40 jkh Exp $

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: nfs.c,v 1.9 1996/04/23 01:29:30 jkh Exp $
* $Id: nfs.c,v 1.10 1996/07/08 08:54:31 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -75,7 +75,8 @@ mediaGetNFS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from NFS\n", file);
if (isDebug())
msgDebug("Request for %s from NFS\n", file);
snprintf(buf, PATH_MAX, "/dist/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: tape.c,v 1.11 1996/04/23 01:29:34 jkh Exp $
* $Id: tape.c,v 1.12 1996/07/08 08:54:36 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -84,7 +84,8 @@ mediaGetTape(Device *dev, char *file, Boolean probe)
int fd;
sprintf(buf, "%s/%s", (char *)dev->private, file);
msgDebug("Request for %s from tape (looking in %s)\n", file, buf);
if (isDebug())
msgDebug("Request for %s from tape (looking in %s)\n", file, buf);
if (file_readable(buf))
fd = open(buf, O_RDONLY);
else {

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: ufs.c,v 1.7 1996/03/02 07:31:58 jkh Exp $
* $Id: ufs.c,v 1.8 1996/04/13 13:32:14 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -47,7 +47,8 @@ mediaGetUFS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from UFS\n", file);
if (isDebug())
msgDebug("Request for %s from UFS\n", file);
snprintf(buf, PATH_MAX, "%s/%s", dev->private, file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: cdrom.c,v 1.20 1996/07/13 05:48:44 jkh Exp $
* $Id: cdrom.c,v 1.21 1996/07/16 17:11:38 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -124,7 +124,8 @@ mediaGetCDROM(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from CDROM\n", file);
if (isDebug())
msgDebug("Request for %s from CDROM\n", file);
snprintf(buf, PATH_MAX, "/cdrom/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: dos.c,v 1.12 1996/04/28 03:26:54 jkh Exp $
* $Id: dos.c,v 1.13 1996/07/08 08:54:25 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -82,7 +82,8 @@ mediaGetDOS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from DOS\n", file);
if (isDebug())
msgDebug("Request for %s from DOS\n", file);
snprintf(buf, PATH_MAX, "/dos/freebsd/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: nfs.c,v 1.9 1996/04/23 01:29:30 jkh Exp $
* $Id: nfs.c,v 1.10 1996/07/08 08:54:31 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -75,7 +75,8 @@ mediaGetNFS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from NFS\n", file);
if (isDebug())
msgDebug("Request for %s from NFS\n", file);
snprintf(buf, PATH_MAX, "/dist/%s", file);
if (file_readable(buf))
return open(buf, O_RDONLY);

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: tape.c,v 1.11 1996/04/23 01:29:34 jkh Exp $
* $Id: tape.c,v 1.12 1996/07/08 08:54:36 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -84,7 +84,8 @@ mediaGetTape(Device *dev, char *file, Boolean probe)
int fd;
sprintf(buf, "%s/%s", (char *)dev->private, file);
msgDebug("Request for %s from tape (looking in %s)\n", file, buf);
if (isDebug())
msgDebug("Request for %s from tape (looking in %s)\n", file, buf);
if (file_readable(buf))
fd = open(buf, O_RDONLY);
else {

View File

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id: ufs.c,v 1.7 1996/03/02 07:31:58 jkh Exp $
* $Id: ufs.c,v 1.8 1996/04/13 13:32:14 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -47,7 +47,8 @@ mediaGetUFS(Device *dev, char *file, Boolean probe)
{
char buf[PATH_MAX];
msgDebug("Request for %s from UFS\n", file);
if (isDebug())
msgDebug("Request for %s from UFS\n", file);
snprintf(buf, PATH_MAX, "%s/%s", dev->private, file);
if (file_readable(buf))
return open(buf, O_RDONLY);