mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Remove 'sd' support. SCSI disks are known as 'da' these days.
This commit is contained in:
parent
aac7434a63
commit
78c8bacf35
2 changed files with 1 additions and 3 deletions
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue