From owner-svn-src-all@FreeBSD.ORG Wed Dec 17 17:43:22 2008 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E79011065678; Wed, 17 Dec 2008 17:43:22 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D26A58FC13; Wed, 17 Dec 2008 17:43:22 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBHHhMAF010569; Wed, 17 Dec 2008 17:43:22 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBHHhMd3010561; Wed, 17 Dec 2008 17:43:22 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <200812171743.mBHHhMd3010561@svn.freebsd.org> From: Marcel Moolenaar Date: Wed, 17 Dec 2008 17:43:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186240 - in head/sys: amd64/conf arm/conf i386/conf mips/conf pc98/conf sparc64/conf sun4v/conf X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2008 17:43:23 -0000 Author: marcel Date: Wed Dec 17 17:43:22 2008 New Revision: 186240 URL: http://svn.freebsd.org/changeset/base/186240 Log: Make gpart the default partitioning class on all platforms. Both ia64 and powerpc were using gpart exclusively already so there's no change for those two. Discussed on: arch@ Modified: head/sys/amd64/conf/DEFAULTS head/sys/arm/conf/DEFAULTS head/sys/arm/conf/EP80219 head/sys/i386/conf/DEFAULTS head/sys/mips/conf/DEFAULTS head/sys/pc98/conf/DEFAULTS head/sys/sparc64/conf/DEFAULTS head/sys/sun4v/conf/DEFAULTS Modified: head/sys/amd64/conf/DEFAULTS ============================================================================== --- head/sys/amd64/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/amd64/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -16,5 +16,5 @@ device io # I/O device device uart_ns8250 # Default partitioning schemes -options GEOM_BSD -options GEOM_MBR +options GEOM_PART_BSD +options GEOM_PART_MBR Modified: head/sys/arm/conf/DEFAULTS ============================================================================== --- head/sys/arm/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/arm/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -7,5 +7,5 @@ machine arm device mem -options GEOM_BSD -options GEOM_MBR +options GEOM_PART_BSD +options GEOM_PART_MBR Modified: head/sys/arm/conf/EP80219 ============================================================================== --- head/sys/arm/conf/EP80219 Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/arm/conf/EP80219 Wed Dec 17 17:43:22 2008 (r186240) @@ -57,7 +57,6 @@ options SYSVSEM #SYSV-style semaphore options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options GEOM_PART_GPT # GUID Partition Tables. -options GEOM_MBR # DOS/MBR partitioning options GEOM_LABEL # Providers labelization. options BOOTP Modified: head/sys/i386/conf/DEFAULTS ============================================================================== --- head/sys/i386/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/i386/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -20,8 +20,8 @@ device io # I/O device device uart_ns8250 # Default partitioning schemes -options GEOM_BSD -options GEOM_MBR +options GEOM_PART_BSD +options GEOM_PART_MBR # enable support for native hardware options NATIVE Modified: head/sys/mips/conf/DEFAULTS ============================================================================== --- head/sys/mips/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/mips/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -9,5 +9,5 @@ device mem device uart_ns8250 -options GEOM_BSD -options GEOM_MBR +options GEOM_PART_BSD +options GEOM_PART_MBR Modified: head/sys/pc98/conf/DEFAULTS ============================================================================== --- head/sys/pc98/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/pc98/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -22,5 +22,5 @@ device uart_ns8250 #device uart_i8251 # Default partitioning schemes -options GEOM_BSD -options GEOM_PC98 +options GEOM_PART_BSD +options GEOM_PART_PC98 Modified: head/sys/sparc64/conf/DEFAULTS ============================================================================== --- head/sys/sparc64/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/sparc64/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -14,8 +14,8 @@ device uart_sab82532 device uart_z8530 # Default partitioning schemes -options GEOM_BSD -options GEOM_SUNLABEL +options GEOM_PART_BSD +options GEOM_PART_VTOC8 # Let sunkbd emulate an AT keyboard by default. options SUNKBD_EMULATE_ATKBD Modified: head/sys/sun4v/conf/DEFAULTS ============================================================================== --- head/sys/sun4v/conf/DEFAULTS Wed Dec 17 17:39:36 2008 (r186239) +++ head/sys/sun4v/conf/DEFAULTS Wed Dec 17 17:43:22 2008 (r186240) @@ -9,5 +9,5 @@ machine sun4v device mem # Memory and kernel memory devices # Default partitioning schemes -options GEOM_BSD -options GEOM_SUNLABEL +options GEOM_PART_BSD +options GEOM_PART_VTOC8