From owner-freebsd-current@FreeBSD.ORG Sun Apr 20 08:02:22 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F21A37B401 for ; Sun, 20 Apr 2003 08:02:22 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C5C43FE1 for ; Sun, 20 Apr 2003 08:02:21 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.9/8.12.9) with SMTP id h3KF2cua007598 for ; Sun, 20 Apr 2003 11:02:38 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Sun, 20 Apr 2003 11:02:37 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: current@FreeBSD.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: HEADS UP: UFS2 now the default creation type on 5.0-CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 20 Apr 2003 15:02:22 -0000 As of today, newfs(8) and sysinstall(8) will create UFS2 file systems by default, unless explicitly specified. Users wanting to create UFS1 file systems for whatever reason (interoperability with earlier versions, etc) should be sure to employ the -O1 flag to newfs(8), or hit '1' in the label editor in sysinstall(8) to select UFS1. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories ---------- Forwarded message ---------- Date: Sun, 20 Apr 2003 07:08:05 -0700 (PDT) From: Robert Watson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs newfs.8 newfs.c src/usr.sbin/sysinstall install.c label.c sysinstall.h src/usr.sbin/sysinstall/help partition.hlp rwatson 2003/04/20 07:08:05 PDT FreeBSD src repository Modified files: sbin/newfs newfs.8 newfs.c usr.sbin/sysinstall install.c label.c sysinstall.h usr.sbin/sysinstall/help partition.hlp Log: Throw the switch--change to UFS2 as our default file system format for FreeBSD 5.1-RELEASE and later: - newfs(8) will now create UFS2 file systems unless UFS1 is specifically requested (-O1). To do this, I just twiddled the Oflag default. - sysinstall(8) will now select UFS2 as the default layout for new file systems unless specifically requested (use '1' and '2' to change the file system layout in the disk labeler). To do this, I inverted the ufs2 flag into a ufs1 flag, since ufs2 is now the default and ufs1 is the edge case. There's a slight semantic change in the key behavior: '2' no longer toggles, it changes the selection to UFS2. This is very similar to a patch David O'Brien sent me at one point, and that I couldn't find. Approved by: re (telecon) Reviewed by: mckusick, phk, bmah Revision Changes Path 1.60 +1 -1 src/sbin/newfs/newfs.8 1.72 +1 -1 src/sbin/newfs/newfs.c 1.12 +14 -10 src/usr.sbin/sysinstall/help/partition.hlp 1.341 +1 -1 src/usr.sbin/sysinstall/install.c 1.137 +21 -7 src/usr.sbin/sysinstall/label.c 1.244 +1 -1 src/usr.sbin/sysinstall/sysinstall.h