mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 12:28:58 +00:00
MFS: add ATA raid support for sysinstall
This commit is contained in:
parent
aef8008768
commit
5e25dc0f5c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68409
@ -302,6 +302,8 @@ MakeDev(struct chunk *c1, const char *path)
|
||||
cmaj = 147, p += 4;
|
||||
else if (!strncmp(p, "aacd", 4))
|
||||
cmaj = 151, p += 4;
|
||||
else if (!strncmp(p, "ar", 2)) /* ATA RAID */
|
||||
cmaj = 157, p += 2;
|
||||
else if (!strncmp(p, "da", 2)) /* CAM support */
|
||||
cmaj = 13, p += 2;
|
||||
else {
|
||||
|
@ -463,9 +463,9 @@ Collapse_Disk(struct disk *d)
|
||||
#endif
|
||||
|
||||
#ifdef PC98
|
||||
static char * device_list[] = {"wd", "aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "fd", 0};
|
||||
static char * device_list[] = {"wd", "aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0};
|
||||
#else
|
||||
static char * device_list[] = {"aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "fd", 0};
|
||||
static char * device_list[] = {"aacd", "ad", "da", "afd", "fla", "idad", "mlxd", "amrd", "twed", "ar", "fd", 0};
|
||||
#endif
|
||||
|
||||
char **
|
||||
|
Loading…
Reference in New Issue
Block a user