Remove 'sd' support. SCSI disks are known as 'da' these days.

This commit is contained in:
Mike Smith 1999-11-27 21:20:57 +00:00
parent aac7434a63
commit 78c8bacf35
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=53784
2 changed files with 1 additions and 3 deletions

View File

@ -255,8 +255,6 @@ MakeDev(struct chunk *c1, const char *path)
bmaj = 0, cmaj = 3, p += 2;
else if (!strncmp(p, "ad", 2)) /* XXX change if "ad' moves */
bmaj = 0, cmaj = 3, p += 2;
else if (!strncmp(p, "sd", 2))
bmaj = 4, cmaj = 13, p += 2;
else if (!strncmp(p, "wfd", 3))
bmaj = 1, cmaj = 87, p += 3;
else if (!strncmp(p, "fla", 3))

View File

@ -375,7 +375,7 @@ Collapse_Disk(struct disk *d)
}
#endif
static char * device_list[] = {"wd", "ad", "sd", "da", "wfd", "fla", "ida", "mlxd", "amrd", 0};
static char * device_list[] = {"wd", "ad", "da", "wfd", "fla", "ida", "mlxd", "amrd", 0};
char **
Disk_Names()