From owner-svn-src-head@FreeBSD.ORG Thu Jul 23 17:25:03 2009 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75D6B1065756; Thu, 23 Jul 2009 17:25:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 309648FC24; Thu, 23 Jul 2009 17:25:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id n6NHNEeQ058386; Thu, 23 Jul 2009 11:23:15 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Thu, 23 Jul 2009 13:23:50 -0400 (EDT) Message-Id: <20090723.132350.-432839349.imp@bsdimp.com> To: mav@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <4A66D0F4.4030108@FreeBSD.org> References: <200907220350.n6M3osaj030202@svn.freebsd.org> <4A66D0F4.4030108@FreeBSD.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, cperciva@FreeBSD.org Subject: Re: svn commit: r195817 - head/usr.sbin/sysinstall X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2009 17:25:04 -0000 In message: <4A66D0F4.4030108@FreeBSD.org> Alexander Motin writes: : Colin Percival wrote: : > Author: cperciva : > Date: Wed Jul 22 03:50:54 2009 : > New Revision: 195817 : > URL: http://svn.freebsd.org/changeset/base/195817 : > : > Log: : > Remove the "dedicated disk mode" partitioning option from sysinstall, in : > both the disk partitioning screen (the 'F' key) and via install.cfg (the : > VAR_DEDICATED_DISK option). This functionality is currently broken in 8.x : > due to libdisk and geom generating different partition names; this commit : > merely acts to help steer users away from the breakage. : > : > Submitted by: randi : > Approved by: re (kensmith) : > : > Modified: : > head/usr.sbin/sysinstall/disks.c : : Is there any other way to not align FS block to the ugly legacy 63 : sectors per track boundary with sysinstall now? I think RAIDs won't be : happy. May be it would be better to fix it? The reason we do it like this is because the boot blocks occupy the first cylinder group. Which with today's fake goemetry is 63 blocks... Warner