From 05f2685017a9f4f98dd2e2ea77feae637e16e5fa Mon Sep 17 00:00:00 2001 From: nwhitehorn Date: Wed, 23 Feb 2011 13:51:41 +0000 Subject: 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. --- usr.sbin/bsdinstall/partedit/part_wizard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.sbin') 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; -- cgit v1.1