From owner-freebsd-current@FreeBSD.ORG Thu Feb 24 20:17:48 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8EF25106571E for ; Thu, 24 Feb 2011 20:17:48 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 22AAA8FC0A for ; Thu, 24 Feb 2011 20:17:47 +0000 (UTC) Received: by wwb31 with SMTP id 31so1238573wwb.31 for ; Thu, 24 Feb 2011 12:17:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ocCWH35vCrx3SciAI0Ai25JVjivDK/vz5n1HhaEJD44=; b=gLdCxeJp/6262FIiAOvaCvkhx4d1djzbTMNgkCtTWriDC8lEVSivRFxzjO/nXLJ1sk cM3s24d9RFw8/LUVdnQiS+3JQofkwNSH/gL+90OdCSjST7J1i0jBzK6xmecRTa+jfzMl nps3ZmcsCEN83evduDJnrBaBb1B98P5AGkIBY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=lwJCj5o5mCQDWY9I8OsHEGi7frh7NWvcoZwM5nultEg8fg3+4oS7jqhI4UbBVtSq6w rUZqzAwTaQ+MzS5qhs2JB9XNZs/LRexxZaxk9XD5LuKh27zQguvIH9xO+LxB3JqczMtZ odmWOJ+g0fOk67I6qiV9dVRilGDHUMBA+DGGE= MIME-Version: 1.0 Received: by 10.216.169.71 with SMTP id m49mr1278111wel.4.1298578666913; Thu, 24 Feb 2011 12:17:46 -0800 (PST) Sender: yanegomi@gmail.com Received: by 10.216.15.74 with HTTP; Thu, 24 Feb 2011 12:17:46 -0800 (PST) In-Reply-To: <4D64FF99.2070908@cabletv.dp.ua> References: <4D64FF99.2070908@cabletv.dp.ua> Date: Thu, 24 Feb 2011 12:17:46 -0800 X-Google-Sender-Auth: XjrQDinTXSTMlJuNb_pOTtDgIAw Message-ID: From: Garrett Cooper To: Mitya Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-current@freebsd.org Subject: Re: Cosmetic path to bsdinstall X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Feb 2011 20:17:48 -0000 On Wed, Feb 23, 2011 at 4:37 AM, Mitya wrote: > Add usually used RAID controller > > --- usr.sbin/bsdinstall/partedit/part_wizard.c.orig =A0 =A02011-02-19 > 17:22:06.000000000 +0200 > +++ usr.sbin/bsdinstall/partedit/part_wizard.c =A0 =A02011-02-21 > 17:20:28.000000000 +0200 > @@ -122,6 +122,18 @@ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 strcat(diskdesc, " ATA Hard Disk"= ); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 else if (strncmp(pp->lg_name, "da", 2) = =3D=3D 0) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 strcat(diskdesc, " SCSI Hard Disk= "); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "aacd", 4)= =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " Adaptec Raid = Disk"); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "amrd", 4)= =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " LSI Raid Disk= "); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "mfid", 4)= =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " LSI Raid Disk= "); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "mlxd", 4)= =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " Mylex Raid Di= sk"); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "twed", 4)= =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " 3ware Raid Di= sk"); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else if (strncmp(pp->lg_name, "pst", 3) = =3D=3D 0) > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0strcat(diskdesc, " Promise Raid = Disk"); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 else if (strncmp(pp->lg_name, "md", 2) = =3D=3D 0) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 strcat(diskdesc, " Memory Disk"); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 else if (strncmp(pp->lg_name, "cd", 2) = =3D=3D 0) { You forgot "twad" :). Thanks, -Garrett