Boring whitespace fixes.

This commit is contained in:
wiz 2001-09-05 23:53:22 +00:00
parent ebe3824c84
commit 619b4bd7a8
29 changed files with 157 additions and 157 deletions

View File

@ -1,6 +1,6 @@
#!/usr/pkg/bin/perl
#
# $NetBSD: MAKEDEV2manpage.pl,v 1.7 2001/06/26 02:28:21 hubertf Exp $
# $NetBSD: MAKEDEV2manpage.pl,v 1.8 2001/09/05 23:53:22 wiz Exp $
#
# Copyright (c) 1999
# Hubert Feyrer <hubertf@netbsd.org>. All rights reserved.
@ -37,7 +37,7 @@
###########################################################################
#
# Convert src/etc/etc.${ARCH}/MAKEDEV and
# src/share/man/man8/MAKEDEV.8.template to
# src/share/man/man8/MAKEDEV.8.template to
# src/share/man/man8/man8.${ARCH}/MAKEDEV.8, replacing
# - @@@SPECIAL@@@ with all targets in the first section (all, std, ...)
# - @@@DEVICES@@@ with the remaining targets
@ -58,12 +58,12 @@ sub read1line
} else {
$h = <MAKEDEV>;
}
# Skip empty lines
# Skip empty lines
while ($h =~ /^#\s*$/) {
$h = <MAKEDEV>;
}
if ($h =~ /^#\s/) {
if ($h =~ /^# /) {
# Not a device/other target
@ -101,7 +101,7 @@ sub do_special
$l=read1line();
while($l =~ /^#\t/) {
$l =~ s/#\s+//;
($target, @line) = split(/\s+/, $l);
$l = join(" ", @line);
@ -110,11 +110,11 @@ sub do_special
$l =~ s/^(.)/\u$1/; # uppercase first word
print MANPAGE ".It Ar $target\n";
print MANPAGE "$l\n";
$l = read1line();
}
$_lastline = $l; # unread
print MANPAGE ".El\n";
}
@ -127,13 +127,13 @@ sub do_devices
$l = read1line();
do {
$l =~ s/#\s+//;
print MANPAGE ".It $l"; # Print section heading
print MANPAGE ".It $l"; # Print section heading
$l = read1line();
print MANPAGE ". Bl -tag -width 0123456789 -compact\n";
while($l =~ /^#\t/) {
$l =~ s/#\s+//;
($target, @line) = split(/\s+/, $l);
$target =~ s/\*/#/;
$l = join(" ", @line);
@ -165,7 +165,7 @@ sub do_devices
print MANPAGE ". It Ar $target\n";
print MANPAGE "$l\n";
$l = read1line();
}
print MANPAGE ". El\n";
@ -207,7 +207,7 @@ sub doarch
print MANPAGE ".\\\"\n";
open(MAKEDEV, "../../../etc/etc.${arch}/MAKEDEV") or die;
open(TEMPLATE, "MAKEDEV.8.template") or die;
while(<TEMPLATE>) {
if (/\@\@\@.*\@\@\@/) {
@ -261,12 +261,12 @@ sub doarch
###########################################################################
###
### M A I N
###
###
###########################################################################
###########################################################################
# cd /usr/src/share/man/man8
chomp($pwd=`pwd`);
die "Run this in .../src/share/man/man8 !\n"
die "Run this in .../src/share/man/man8 !\n"
if ($pwd !~ m:share/man/man8: );
if ($#ARGV >= 0) {
@ -274,7 +274,7 @@ if ($#ARGV >= 0) {
} else {
# Determine available archs by looking for man8.*
# Determine available archs by looking for man8.*
opendir(D, ".") || die;
while ($d=readdir(D)) {
if ($d =~ /man8\.(.*)$/) {

View File

@ -1,4 +1,4 @@
.\" $NetBSD: genassym.sh.8,v 1.5 1999/03/17 20:31:19 garbled Exp $
.\" $NetBSD: genassym.sh.8,v 1.6 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1997 Matthias Pfaller.
.\" All rights reserved.
@ -49,9 +49,9 @@ reads from stdin. The generated file is used by kernel sources
written in assembler to gain access to information (e.g. structure
offsets and sizes) normally only known to the C compiler.
.Nm
resides in the
resides in the
.Pa /sys/kern
directory. Arguments to
directory. Arguments to
.Nm
are usually of the form
.Ar ${CC} ${CFLAGS} ${CPPFLAGS}

View File

@ -1,4 +1,4 @@
.\" $NetBSD: makedev.8,v 1.6 2000/11/07 06:43:28 lukem Exp $
.\" $NetBSD: makedev.8,v 1.7 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -46,10 +46,10 @@
.Sh DESCRIPTION
.Nm
is a shell script normally used to install
special files. It resides in the
special files. It resides in the
.Pa /dev
directory, as this is the normal location of special files.
Arguments to
Arguments to
.Nm
are usually of the form
.Ar device-name Ns Sy \&?
@ -86,7 +86,7 @@ console cassette device(s),
devices would be made for the appropriate system.
.It Sy local
Create those devices specific to the local site. This
request causes the shell file
request causes the shell file
.Pa /dev/MAKEDEV.local
to be executed. Site specific commands, such as those
used to setup dialup lines as
@ -95,7 +95,7 @@ should be included
in this file.
.El
.Pp
Since all devices are created using
Since all devices are created using
.Xr mknod 8 ,
this shell script is useful only to the super-user.
.Sh DIAGNOSTICS

View File

@ -1,8 +1,8 @@
.\" $NetBSD: boot.8,v 1.3 2000/06/14 17:25:48 cgd Exp $
.\" $NetBSD: boot.8,v 1.4 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.\"

View File

@ -1,8 +1,8 @@
.\" $NetBSD: installboot.8,v 1.17 2000/06/14 17:25:48 cgd Exp $
.\" $NetBSD: installboot.8,v 1.18 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.Dd April 3, 1999

View File

@ -1,8 +1,8 @@
.\" $NetBSD: mkbootimage.8,v 1.4 2000/06/14 17:25:49 cgd Exp $
.\" $NetBSD: mkbootimage.8,v 1.5 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.Dd April 3, 1999

View File

@ -1,8 +1,8 @@
.\" $NetBSD: setnetbootinfo.8,v 1.9 2000/06/14 17:25:49 cgd Exp $
.\" $NetBSD: setnetbootinfo.8,v 1.10 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 1997, 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.Dd April 3, 1999

View File

@ -1,4 +1,4 @@
.\" $NetBSD: binpatch.8,v 1.5 1999/11/19 01:12:41 enami Exp $
.\" $NetBSD: binpatch.8,v 1.6 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1994 Christian E. Hopps
.\" All rights reserved.
@ -30,9 +30,9 @@
.\"
.Dd February 2, 1994
.Dt BINPATCH 8 amiga
.Os
.Os
.Sh NAME
.Nm binpatch
.Nm binpatch
.Nd "examine and or modify initialized data in a binary file"
.Sh SYNOPSIS
.Nm binpatch

View File

@ -1,4 +1,4 @@
.\" $NetBSD: installboot.8,v 1.12 2001/07/24 16:50:41 wiz Exp $
.\" $NetBSD: installboot.8,v 1.13 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -36,7 +36,7 @@
.\"
.Dd November 29, 1996
.Dt INSTALLBOOT 8 amiga
.Os
.Os
.Sh NAME
.Nm installboot
.Nd install a bootstrap on an FFS filesystem partition
@ -59,13 +59,13 @@ DraCo) floppy disks in Amiga format (880K/1760k).
.Pp
In the presence of more than one bootable partition/floppy disk, the partition
is chosen by the bootpriority (from the RDB), which can be overridden by
the operator from the boot menu (on Amiga machines, hold down the outer
the operator from the boot menu (on Amiga machines, hold down the outer
mouse buttons during boot; on DraCo machines, press the left mouse button
when prompted).
.Pp
On RDB devices, the whole bootblock is loaded by the ROM. The number of
On RDB devices, the whole bootblock is loaded by the ROM. The number of
boot blocks in the RDB partition entry must be correct.
.Pp
.Pp
On floppy disks, the ROM always loads the first two blocks (1024 bytes),
and the bootblock allocates memory and loads the whole bootblock on startup.
.Pp
@ -89,7 +89,7 @@ The name of the character special device specifying the partition on which the
bootstrap is to be installed.
.El
.Sh EXAMPLES
The following command will install the
The following command will install the
boot program in the bootblock area on
.Dq sd0a :
.Bd -literal -offset indent
@ -101,8 +101,8 @@ If
is accidentally used on the whole disk partition, the RDB will be overwritten,
making your system unusable after the next reboot.
.Pp
Some third-party accelerator boards are not auto-configuring. You won't
be able to use their memory when booting from the bootblock after a cold
Some third-party accelerator boards are not auto-configuring. You won't
be able to use their memory when booting from the bootblock after a cold
start.
.Pp
Some third-party disk controllers don't support bootblock booting.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: binpatch.8,v 1.3 1999/11/19 01:12:41 enami Exp $
.\" $NetBSD: binpatch.8,v 1.4 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1994 Christian E. Hopps
.\" All rights reserved.
@ -30,9 +30,9 @@
.\"
.Dd February 2, 1994
.Dt BINPATCH 8 atari
.Os
.Os
.Sh NAME
.Nm binpatch
.Nm binpatch
.Nd "examine and or modify initialized data in a binary file"
.Sh SYNOPSIS
.Nm binpatch

View File

@ -1,11 +1,11 @@
.\" $NetBSD: bootpref.8,v 1.6 2001/02/25 19:22:16 jdc Exp $
.\" $NetBSD: bootpref.8,v 1.7 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1998 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Julian Coleman.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -21,7 +21,7 @@
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@ -197,7 +197,7 @@ shows the current boot preferences.
.Sh AUTHOR
.An Julian Coleman
.Sh CAVEATS
Setting the boot os to
Setting the boot os to
.Ar none
will cause the machine not to boot from the hard disk.
.Pp
@ -206,7 +206,7 @@ The majority of the parameters are not used under
.Sh SEE ALSO
.Xr installboot 8
.Sh HISTORY
The
.Nm
The
.Nm
command first appeared in
.Nx 1.4

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.4 1997/03/13 04:50:27 perry Exp $
.\" $NetBSD: boot.8,v 1.5 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -65,7 +65,7 @@ when the ``a'' partition file system on the pack is created.
This
.Em boot
program
finds the corresponding file on the given device
finds the corresponding file on the given device
.Pf ( Ar netbsd
by default),
loads that file into memory,

View File

@ -1,4 +1,4 @@
.\" $NetBSD: crash.8,v 1.6 1998/01/03 09:03:27 mikel Exp $
.\" $NetBSD: crash.8,v 1.7 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -197,7 +197,7 @@ for details.
.Pp
To analyze a dump you should begin by running
.Xr adb 1
with the
with the
.Fl k
flag on the system load image and core dump.
If the core image is the result of a panic,

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.19 2000/10/01 13:45:46 bjh21 Exp $
.\" $NetBSD: boot.8,v 1.20 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -80,7 +80,7 @@ above example, it will be
.Dq Li wd0a:netbsd
which is the file
.Nm netbsd
on partition
on partition
.Dq a
of the
.Nx
@ -109,7 +109,7 @@ To boot from an alternate disk, the full name of the device should
be given at the prompt.
.Va device
is of the form
.Xo Va xd
.Xo Va xd
.Op Va N Ns Op Va x
.Xc
where
@ -125,7 +125,7 @@ installation:
.Pp
.Bl -hang -compact
.It sd
SCSI disks on a controller recognized by the BIOS. The
SCSI disks on a controller recognized by the BIOS. The
unit number is the BIOS device number.
.It wd
ST506, IDE, ESDI, RLL disks on a WD100[2367] or
@ -136,9 +136,9 @@ Hard disks as numbered by the BIOS.
Floppy drives as numbered by the BIOS.
.El
.Pp
The default
The default
.Va filename
is
is
.Pa netbsd ;
if the boot loader fails to successfully
open that image, it then tries
@ -221,7 +221,7 @@ boot block for MCA PS/2 machines, see
.It Pa /usr/mdec/biosboot_resetvideo.sym
boot block for machines that need their video boards reset on bootup (e.g. iOpeners).
.It Pa /boot
boot block (written by
boot block (written by
.Xr installboot 8 ).
.El
.Sh SEE ALSO

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot_console.8,v 1.7 2000/11/07 05:44:17 lukem Exp $
.\" $NetBSD: boot_console.8,v 1.8 2001/09/05 23:53:23 wiz Exp $
.\"
.Dd May 12, 2000
.Os
@ -78,7 +78,7 @@ in sequence. If output of a character to the port succeeds (and if
.Dq Dv DIRECT_SERIAL
is defined the RS-232
.Dq "modem ready"
status is on after the character is output), the port is used as console.
status is on after the character is output), the port is used as console.
If no serial port passes the check,
.Dq Dv CONSDEV_PC
is used. The progress of the selection process is shown at the PC

View File

@ -1,4 +1,4 @@
.\" $NetBSD: dosboot.8,v 1.11 2000/09/24 17:03:28 jdolecek Exp $
.\" $NetBSD: dosboot.8,v 1.12 2001/09/05 23:53:23 wiz Exp $
.Dd May 13, 2000
.Os
.Dt DOSBOOT 8 i386
@ -13,18 +13,18 @@
.Op Ar path Op Fl adqsv
.Sh DESCRIPTION
.Nm
is an
is an
.Tn MS-DOS
program. It is a boot loader for
.Nx Ns Tn /i386
designed to permit
.Nx
to be booted directly from
to be booted directly from
.Tn MS-DOS .
By default, it boots a file with
name
.Pa NETBSD
in the current
in the current
.Tn MS-DOS
directory.
.Nm
@ -34,7 +34,7 @@ shares common code with the standard boot loader,
The recognized options are:
.Bl -tag -width -ads -offset 04n
.It Fl u
Boot from a UFS filesystem instead of an
Boot from a UFS filesystem instead of an
.Tn MS-DOS
filesystem.
.It Fl c
@ -47,14 +47,14 @@ Enter interactive mode.
will present a prompt, allowing input of commands (see below).
.Pp
.It Pa path
Specifies the kernel file. In
Specifies the kernel file. In
.Tn MS-DOS
mode (default) a normal
mode (default) a normal
.Tn MS-DOS
filename (with or without drive specification) is accepted.
In UFS mode (after
.Fl u
or after a
or after a
.Ic mode ufs
command), a path in a
.Nx
@ -64,7 +64,7 @@ the first harddisk. Another device or partition can be specified
by prepending a block device name in terms of
.Nx ,
followed
by a colon (see
by a colon (see
.Xr boot 8
and examples).
.It Fl adqsv
@ -92,7 +92,7 @@ for full details.
.It Ic dev Op device
Set the default device and partition for subsequent filesystem operations.
Without an operand, print the current setting.
This setting doesn't apply to
This setting doesn't apply to
.Tn MS-DOS
mode.
.It Ic help
@ -112,7 +112,7 @@ or
.It Ic quit
Leave the
.Nm
program and exit to
program and exit to
.Tn MS-DOS .
.El
.Pp
@ -124,7 +124,7 @@ hierarchy, under
.Sh EXAMPLES
To boot a
.Nx
kernel located on
kernel located on
.Tn MS-DOS
drive D, one would issue:
.Bd -literal -offset indent
@ -142,12 +142,12 @@ dosboot -u fd0a:netbsd -s
.Sh BUGS
.Nm
assumes that the processor is in real mode at startup. It does not work
well in the presence of
well in the presence of
.Tn MS-DOS
extenders and memory managers.
.Pp
.Nm
does not run directly under
does not run directly under
.Tn Windows 95 .
See
.Xr w95boot 8
@ -163,7 +163,7 @@ used by the booted
.Nx
kernel.
.Pp
In
In
.Tn MS-DOS
mode, no useful boot device specification is passed to
.Nx .

View File

@ -1,4 +1,4 @@
.\" $NetBSD: installboot.8,v 1.14 2001/08/18 12:25:25 enami Exp $
.\" $NetBSD: installboot.8,v 1.15 2001/09/05 23:53:23 wiz Exp $
.\"
.\" Copyright (c) 1997 Perry E. Metzger. All rights reserved.
.\" Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@ -31,7 +31,7 @@
.\"
.Dd June 13, 1997
.Dt INSTALLBOOT 8 i386
.Os
.Os
.Sh NAME
.Nm installboot
.Nd install disk bootstrap software
@ -143,21 +143,21 @@ harddisk, use the following command:
.Pp
.Nx
is in transition from using the 386BSD MBR partition-ID of 165 (0xa5),
to using a new, unique partition-ID of 169 (0xa9).
to using a new, unique partition-ID of 169 (0xa9).
.Nx
versions newer than 1.3.3 will use the new partition-ID if one is
found, and if not, fall back to the old ID of 165 with a warning. To
eliminate the warning, update your bootblocks and
.Nm
.Nm
to 1.3.3 or newer, rerun
.Nm
.Nm
on the affected drives, and lastly use
.Xr fdisk 8
to change the MBR partition-ID of NetBSD partitions to 169.
.Pp
Note that the final step of changing MBR partition-IDs from 165 to 169
renders a disk unbootable by older
.Nx
.Nx
kernels, which do not recognize the new ID.
.Pp
The

View File

@ -1,4 +1,4 @@
.\" $NetBSD: w95boot.8,v 1.3 2001/08/18 12:25:25 enami Exp $
.\" $NetBSD: w95boot.8,v 1.4 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1997 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -145,7 +145,7 @@ To set up GoNetBSD to run under System Agent, follow these steps. First,
double click the System Agent icon on the taskbar tray. This will open
the System Agent window. Select ``Schedule a New Program'' from the
``Program'' menu. In the ``Program'' text field, enter the complete path
to the GoNetBSD batch file, for example
to the GoNetBSD batch file, for example
.Dq C:\eNetBSD\eGoNetBSD.BAT Ns .
In the ``Description'' text field, enter a desriptive name for the
scheduled event, such as ``Reboot system under NetBSD''.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.4 1998/02/06 06:15:00 perry Exp $
.\" $NetBSD: boot.8,v 1.5 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991 The Regents of the University of California.
.\" All rights reserved.
@ -109,7 +109,7 @@ in native OS rather than from the usual location in the
file system. A radio button is supplied for this purpose. Note that
some programs will not run properly if the kernel is not found as
.Ar /netbsd
within the
within the
.Nx
file system.
.Sh FILES

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.8 2001/07/22 13:34:02 wiz Exp $
.\" $NetBSD: boot.8,v 1.9 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991 The Regents of the University of California.
.\" All rights reserved.
@ -68,7 +68,7 @@ waits for user commands. If set to \fBb\fR, the ROM attempts to autoboot.
On the DECstation 2100 and 3100, the path used for automatic booting is
stored in the
.Nm bootpath
environment variable. The path is made up of a
environment variable. The path is made up of a
device type specifier (e.g., rz, tz, mop or tftp) followed by
a triplet in the form (x,y,z), followed by a filename to load.
.Pp
@ -186,7 +186,7 @@ boot 3/rz4/netbsd.new -a
The kernel supports the following arguments:
.Bd -unfilled -offset indent
a Autoboot -- try and boot to multi-user mode without
a Autoboot -- try and boot to multi-user mode without
further input.
m use a miniroot already present in memory.

View File

@ -1,8 +1,8 @@
.\" $NetBSD: installboot.8,v 1.4 2000/11/07 06:43:29 lukem Exp $
.\" $NetBSD: installboot.8,v 1.5 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.Dd April 3, 1999
@ -118,10 +118,10 @@ Do not actually write anything to the disk.
Recalculate and restore the Sun and
.Nx Ns Tn /sparc
compatible checksum. This option is used
when making an ISO image which will boot on both
.Nx Ns Tn /sparc
and
.Nx Ns Tn /pmax.
when making an ISO image which will boot on both
.Nx Ns Tn /sparc
and
.Nx Ns Tn /pmax.
.Em Note : No The existing
.Nx Ns Tn /sparc
disklabel should use no more than 4 partitions.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.10 2000/09/24 17:03:28 jdolecek Exp $
.\" $NetBSD: boot.8,v 1.11 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1992, 1993
.\" The Regents of the University of California. All rights reserved.
@ -82,7 +82,7 @@ flag to the boot loader would boot the system in
quiet mode,
.Op Fl v
in verbose mode.
Any extra flags or arguments, the after the -- separator,
Any extra flags or arguments, the after the -- separator,
.Ar <boot string>
are passed to the boot prom.
Other flags are currently ignored.

View File

@ -1,4 +1,4 @@
.\" $NetBSD: installboot.8,v 1.8 2000/08/10 13:21:11 mrg Exp $
.\" $NetBSD: installboot.8,v 1.9 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -36,7 +36,7 @@
.\"
.Dd September 29, 1995
.Dt INSTALLBOOT 8 sparc
.Os
.Os
.Sh NAME
.Nm installboot
.Nd install a bootstrap on an FFS filesystem partition

View File

@ -1,4 +1,4 @@
.\" $NetBSD: boot.8,v 1.4 1998/04/28 06:00:56 fair Exp $
.\" $NetBSD: boot.8,v 1.5 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -197,10 +197,10 @@ contains the correct parameters for an
disk such
as the RD53.
.Pp
On any processor, the
On any processor, the
.Em boot
program
finds the corresponding file on the given device
finds the corresponding file on the given device
.Pf ( Pa netbsd
by default), loads that file
into memory location zero, and starts the program at the entry address

View File

@ -1,4 +1,4 @@
.\" $NetBSD: crash.8,v 1.5 1997/10/19 13:04:31 mrg Exp $
.\" $NetBSD: crash.8,v 1.6 2001/09/05 23:53:24 wiz Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -216,7 +216,7 @@ for details.
.PP
To analyze a dump you should begin by running
.IR adb (1)
with the
with the
.B \-k
flag on the system load image and core dump.
If the core image is the result of a panic,

View File

@ -1,4 +1,4 @@
.\" $NetBSD: drtest.8,v 1.7 2000/11/07 06:43:34 lukem Exp $
.\" $NetBSD: drtest.8,v 1.8 2001/09/05 23:53:25 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -41,19 +41,19 @@
.Nd standalone disk test program
.Sh DESCRIPTION
.Nm
is a standalone program used to read a disk
track by track.
It was primarily intended as a test program
is a standalone program used to read a disk
track by track.
It was primarily intended as a test program
for new standalone drivers, but has shown
useful in other contexts as well, such as
useful in other contexts as well, such as
verifying disks and running speed
tests. For example, when a disk has been formatted
(by
.Xr format 8 ) ,
you can check that
hard errors has been taken care of by running
hard errors has been taken care of by running
.Nm "" .
No hard errors should be found, but in many cases
No hard errors should be found, but in many cases
quite a few soft
.Tn ECC
errors will be reported.
@ -63,10 +63,10 @@ While
is running, the cylinder number is printed on
the console for every 10th cylinder read.
.Sh EXAMPLE
A sample run of
A sample run of
.Xr drtest
is shown below.
In this example (using a 750),
is shown below.
In this example (using a 750),
.Nm
is loaded from the root file system;
usually it
@ -77,7 +77,7 @@ As usual, ``#'' and ``@'' may be used to edit input.
.Bd -unfilled -offset indent -compact
.Li \&>>> Ns Sy B/3
.Li \&%%
.Li \&loading hk(0,0)boot
.Li \&loading hk(0,0)boot
.Li \&Boot
.Li \&: Sy \&hk(0,0)drtest
.Li Test program for stand-alone up and hp driver
@ -95,11 +95,11 @@ As usual, ``#'' and ``@'' may be used to edit input.
.Em (...to abort halt machine with \&^P)
.Ed
.Sh DIAGNOSTICS
The diagnostics are intended to be self explanatory. Note, however, that
The diagnostics are intended to be self explanatory. Note, however, that
the device number
in the diagnostic messages is identified as
.Em typeX
instead of
instead of
.Em type(a,u)
where
.Ar X

View File

@ -1,4 +1,4 @@
.\" $NetBSD: format.8,v 1.5 2000/10/05 12:35:33 ad Exp $
.\" $NetBSD: format.8,v 1.6 2001/09/05 23:53:25 wiz Exp $
.\"
.\" Copyright (c) 1980, 1983, 1993
.\" The Regents of the University of California. All rights reserved.
@ -43,7 +43,7 @@ There are two ways to format disk packs. The simplest is to
use the
.I format
program. The alternative is to use the DEC standard formatting
software which operates under the DEC diagnostic supervisor.
software which operates under the DEC diagnostic supervisor.
This manual page describes the operation of
.IR format ,
then concludes with some remarks about using the DEC formatter.
@ -56,7 +56,7 @@ In addition to the formatting
operation,
.I format
records any bad sectors encountered
according to DEC standard 144.
according to DEC standard 144.
Formatting is performed one track at a
time by writing the appropriate
headers and a test pattern and then checking
@ -77,7 +77,7 @@ is written to the disk in the first five
even numbered sectors of the last track.
It is also possible to reformat sections of the disk
in units of tracks.
.I Format
.I Format
may be used on any UNIBUS or MASSBUS drive
supported by the \fIup\fP and \fIhp\fP device
drivers which uses 4-byte headers (everything except RP's).
@ -125,7 +125,7 @@ uses the standard notation of the standalone I/O library
in identifying a drive to be formatted. A drive is
specified as
.IR zz ( x , y ),
where
where
.I zz
refers to the controller type (either
.I hp
@ -140,20 +140,20 @@ drive unit number; and
is the file system partition
on drive
.I x
(this should always be 0).
(this should always be 0).
For example, ``hp(1,0)'' indicates that drive
1 on MASSBUS adaptor 0 should be formatted; while
``up(10,0)'' indicates that UNIBUS drive 2 on UNIBUS adaptor 1
should be formatted.
.PP
Before each formatting attempt,
Before each formatting attempt,
.I format
prompts the user in case debugging should be enabled
in the appropriate device driver. A carriage return
disables debugging information.
.PP
.I Format
should be used prior to building file systems (with
should be used prior to building file systems (with
.IR newfs (8))
to ensure that all sectors with uncorrectable media errors
are remapped. If a drive develops uncorrectable
@ -163,10 +163,10 @@ or
.IR badsect (8)
should be able to avoid the bad sectors.
.SH EXAMPLE
A sample run of
A sample run of
.I format
is shown below.
In this example (using a VAX-11/780),
is shown below.
In this example (using a VAX-11/780),
.I format
is loaded from the console floppy;
on an 11/750
@ -217,7 +217,7 @@ Other hard: 0
Marked bad: 0
Skipped: 0
Total of 4 hard errors revectored.
Writing bad sector table at block 808272
Writing bad sector table at block 808272
(\fI808272 is the block # of the first block in the bad sector table\fP)
Done
(\fI...program restarts to allow formatting other disks\fP)
@ -234,7 +234,7 @@ covered in detail here.
.I
.PP
The formatting procedures are different for each type of disk. Listed
here are the formatting procedures for RK07's, RP0X, and RM0X
here are the formatting procedures for RK07's, RP0X, and RM0X
disks.
.PP
You should shut down UNIX and halt the machine to do any disk formatting.
@ -289,7 +289,7 @@ badsect(8),
newfs(8)
.SH BUGS
An equivalent facility should be available which operates under
a running UNIX system.
a running UNIX system.
.PP
It should be possible to reformat or verify part or all of a disk,
then update the existing bad sector table.

View File

@ -1,8 +1,8 @@
.\" $NetBSD: installboot.8,v 1.11 2000/11/07 06:43:34 lukem Exp $
.\" $NetBSD: installboot.8,v 1.12 2001/09/05 23:53:25 wiz Exp $
.\"
.\" Copyright (c) 1999 Christopher G. Demetriou
.\" All rights reserved.
.\"
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
@ -18,7 +18,7 @@
.\" information about NetBSD.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@ -29,7 +29,7 @@
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.\"
.\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
.\"
.Dd April 3, 1999
@ -118,10 +118,10 @@ Do not actually write anything to the disk.
Recalculate and restore the Sun and
.Nx Ns Tn /sparc
compatible checksum. This option is used
when making an ISO image which will boot on both
.Nx Ns Tn /sparc
and
.Nx Ns Tn /vax.
when making an ISO image which will boot on both
.Nx Ns Tn /sparc
and
.Nx Ns Tn /vax.
.Em Note : No The existing
.Nx Ns Tn /sparc
disklabel should use no more than 4 partitions.
@ -217,7 +217,7 @@ The
version was modified to produce the
.Nx Ns Tn /pmax
.Nm
by Simon Burge which formed the starting point for this program.
by Simon Burge which formed the starting point for this program.
.if 0 \{\
The previous version of the
.Nx Ns Tn /alpha

View File

@ -1,4 +1,4 @@
.\" $NetBSD: rc.8,v 1.15 2001/05/04 03:22:23 lukem Exp $
.\" $NetBSD: rc.8,v 1.16 2001/09/05 23:53:22 wiz Exp $
.\"
.\" Copyright (c) 2000 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -101,7 +101,7 @@ that do not have a
.Dq nostart
keyword (refer to
.Xr rcorder 8 's
.Fl s
.Fl s
flag),
and assigns the result to a variable.
.It
@ -131,7 +131,7 @@ that have a
.Dq shutdown
keyword (refer to
.Xr rcorder 8 's
.Fl k
.Fl k
flag),
reverses that order, and assigns the result to a variable.
.It