summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2011-02-23 13:51:41 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2011-02-23 13:51:41 +0000
commit05f2685017a9f4f98dd2e2ea77feae637e16e5fa (patch)
treeb0437c2822cd89607d26f26acbeb68b7131db197 /usr.sbin
parentb083c8ec9687960d7f3313cbef07ff435175721c (diff)
downloadFreeBSD-src-05f2685017a9f4f98dd2e2ea77feae637e16e5fa.zip
FreeBSD-src-05f2685017a9f4f98dd2e2ea77feae637e16e5fa.tar.gz
Add a catch-all for miscellaneous RAID volumes while seeking a better
solution here. It would really help if CAM devices were part of newbus.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bsdinstall/partedit/part_wizard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/partedit/part_wizard.c b/usr.sbin/bsdinstall/partedit/part_wizard.c
index 6794381..248e77c 100644
--- a/usr.sbin/bsdinstall/partedit/part_wizard.c
+++ b/usr.sbin/bsdinstall/partedit/part_wizard.c
@@ -127,7 +127,8 @@ boot_disk(struct gmesh *mesh)
else if (strncmp(pp->lg_name, "cd", 2) == 0) {
n--;
continue;
- }
+ } else
+ strcat(diskdesc, " Hard Disk");
disks[n-1].text = strdup(diskdesc);
disks[n-1].help = NULL;
disks[n-1].state = 0;
OpenPOWER on IntegriCloud