diff options
| author | Paul Saab <ps@FreeBSD.org> | 2000-07-01 06:47:47 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2000-07-01 06:47:47 +0000 |
| commit | 588d3b4e0dcc3719a30b6211cec27c8b883a6c24 (patch) | |
| tree | fbf9e47ec21d0055dbda69ef45b4e900f8c033a0 /sbin | |
| parent | d8bf7d747ffc8c3a01330f1793f38a2cc16cb3fe (diff) | |
Notes
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/disklabel/disklabel.8 | 16 | ||||
| -rw-r--r-- | sbin/disklabel/disklabel.c | 4 | ||||
| -rw-r--r-- | sbin/dump/dump.8 | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/sbin/disklabel/disklabel.8 b/sbin/disklabel/disklabel.8 index 4649a2e65b0d..52d9b5ff0d6c 100644 --- a/sbin/disklabel/disklabel.8 +++ b/sbin/disklabel/disklabel.8 @@ -119,12 +119,12 @@ forms require a disk device name, which should always be the raw .if t ``complete'' (or ``c'') .if n "complete" (or "c") partition, for example -.Pa /dev/rda0c . +.Pa /dev/da0c . .Nm understands the abbreviation .Pa da0 , which it converts internally to -.Pa /dev/rda0c . +.Pa /dev/da0c . .Ss Reading the disk label .Pp To examine or save the label on a disk drive, use @@ -139,7 +139,7 @@ without options: represents the raw disk in question, and may be in the form .Pa da0 or -.Pa /dev/rda0c . +.Pa /dev/da0c . It will display all of the parameters associated with the drive and its partition layout. Unless the .Fl r @@ -354,9 +354,9 @@ on architectures like the Alpha, where only a single-stage boot is used). uses an ASCII version of the label when examining, editing or restoring a disk label. The format is: .Bd -literal -offset 4n -# /dev/rda1c: +# /dev/da1c: type: SCSI -disk: sd0s1 +disk: da0s1 label: flags: bytes/sector: 512 @@ -447,7 +447,7 @@ cylinder boundary. Display the in-core label for .Pa da0 as obtained via -.Pa /dev/rda0c . +.Pa /dev/da0c . .Pp .Dl disklabel da0 > savedlabel .Pp @@ -459,7 +459,7 @@ This file can be used with the .Fl R flag to restore the label at a later date. .Pp -.Dl disklabel -w -r /dev/rda0c da2212 foo +.Dl disklabel -w -r /dev/da0c da2212 foo .Pp Create a label for .Pa da0 @@ -501,7 +501,7 @@ and possibly .Pa /boot/boot2 . On-disk and in-core labels are unchanged. .Pp -.Dl disklabel -w -B /dev/rda0c -b newboot1 -s newboot da2212 +.Dl disklabel -w -B /dev/da0c -b newboot1 -s newboot da2212 .Pp Install a new label and bootstrap. .if t The label is derived from disktab information for ``da2212'' and diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index 8715538f62e5..1f396a18f4be 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -232,7 +232,7 @@ main(argc, argv) specname = dkname; f = open(specname, op == READ ? O_RDONLY : O_RDWR); if (f < 0 && errno == ENOENT && dkname[0] != '/') { - (void)sprintf(specname, "%sr%s", _PATH_DEV, dkname); + (void)sprintf(specname, "%s%s", _PATH_DEV, dkname); np = namebuf + strlen(specname) + 1; f = open(specname, op == READ ? O_RDONLY : O_RDWR); } @@ -1342,7 +1342,7 @@ getvirginlabel(void) warnx("\"auto\" requires the usage of a canonical disk name"); return (NULL); } - (void)snprintf(namebuf, BBSIZE, "%sr%s", _PATH_DEV, dkname); + (void)snprintf(namebuf, BBSIZE, "%s%s", _PATH_DEV, dkname); if ((f = open(namebuf, O_RDONLY)) == -1) { warn("cannot open %s", namebuf); return (NULL); diff --git a/sbin/dump/dump.8 b/sbin/dump/dump.8 index 436e7b793edc..fb7b3b4e1e9c 100644 --- a/sbin/dump/dump.8 +++ b/sbin/dump/dump.8 @@ -141,7 +141,7 @@ may be a special device file like .Pa /dev/rsa0 (a tape drive), -.Pa /dev/rfd1 +.Pa /dev/fd1 (a floppy disk drive), an ordinary file, or |
