Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Feb 2011 13:51:41 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r218973 - head/usr.sbin/bsdinstall/partedit
Message-ID:  <201102231351.p1NDpfrF069951@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Wed Feb 23 13:51:41 2011
New Revision: 218973
URL: http://svn.freebsd.org/changeset/base/218973

Log:
  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.

Modified:
  head/usr.sbin/bsdinstall/partedit/part_wizard.c

Modified: head/usr.sbin/bsdinstall/partedit/part_wizard.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/part_wizard.c	Wed Feb 23 13:50:24 2011	(r218972)
+++ head/usr.sbin/bsdinstall/partedit/part_wizard.c	Wed Feb 23 13:51:41 2011	(r218973)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102231351.p1NDpfrF069951>