From owner-svn-src-all@FreeBSD.ORG Wed Jan 5 22:09:02 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1233) id D20D71065672; Wed, 5 Jan 2011 22:09:02 +0000 (UTC) Date: Wed, 5 Jan 2011 22:09:02 +0000 From: Alexander Best To: Dimitry Andric Message-ID: <20110105220902.GA70759@freebsd.org> References: <201101052146.p05Lk8OC092052@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201101052146.p05Lk8OC092052@svn.freebsd.org> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r217028 - in head/sys/boot: i386/boot2 i386/gptboot i386/gptzfsboot i386/zfsboot pc98/boot2 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, 05 Jan 2011 22:09:02 -0000 On Wed Jan 5 11, Dimitry Andric wrote: > Author: dim > Date: Wed Jan 5 21:46:08 2011 > New Revision: 217028 > URL: http://svn.freebsd.org/changeset/base/217028 > > Log: > Remove superfluous -mno-(mmx|3dnow|sse|sse2|sse3) flags in Makefiles > under sys/boot/{i386,pc98}, since these are already added via > sys/boot/{i386,pc98}/Makefile.inc. thanks a bunch. :) > > Submitted by: arundel > > Modified: > head/sys/boot/i386/boot2/Makefile > head/sys/boot/i386/gptboot/Makefile > head/sys/boot/i386/gptzfsboot/Makefile > head/sys/boot/i386/zfsboot/Makefile > head/sys/boot/pc98/boot2/Makefile > > Modified: head/sys/boot/i386/boot2/Makefile > ============================================================================== > --- head/sys/boot/i386/boot2/Makefile Wed Jan 5 21:38:02 2011 (r217027) > +++ head/sys/boot/i386/boot2/Makefile Wed Jan 5 21:46:08 2011 (r217028) > @@ -31,7 +31,6 @@ CFLAGS= -Os \ > -fno-unit-at-a-time \ > -mno-align-long-strings \ > -mrtd \ > - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ > -D${BOOT2_UFS} \ > -DFLAGS=${BOOT_BOOT1_FLAGS} \ > -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ > > Modified: head/sys/boot/i386/gptboot/Makefile > ============================================================================== > --- head/sys/boot/i386/gptboot/Makefile Wed Jan 5 21:38:02 2011 (r217027) > +++ head/sys/boot/i386/gptboot/Makefile Wed Jan 5 21:46:08 2011 (r217028) > @@ -26,7 +26,6 @@ CFLAGS= -DBOOTPROG=\"gptboot\" \ > -fno-unit-at-a-time \ > -mno-align-long-strings \ > -mrtd \ > - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ > -DGPT \ > -D${GPTBOOT_UFS} \ > -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ > > Modified: head/sys/boot/i386/gptzfsboot/Makefile > ============================================================================== > --- head/sys/boot/i386/gptzfsboot/Makefile Wed Jan 5 21:38:02 2011 (r217027) > +++ head/sys/boot/i386/gptzfsboot/Makefile Wed Jan 5 21:46:08 2011 (r217028) > @@ -23,7 +23,6 @@ CFLAGS= -DBOOTPROG=\"gptzfsboot\" \ > -fno-unit-at-a-time \ > -mno-align-long-strings \ > -mrtd \ > - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ > -DGPT -DBOOT2 \ > -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ > -DSIOFMT=${B2SIOFMT} \ > > Modified: head/sys/boot/i386/zfsboot/Makefile > ============================================================================== > --- head/sys/boot/i386/zfsboot/Makefile Wed Jan 5 21:38:02 2011 (r217027) > +++ head/sys/boot/i386/zfsboot/Makefile Wed Jan 5 21:46:08 2011 (r217028) > @@ -24,7 +24,6 @@ CFLAGS= -DBOOTPROG=\"zfsboot\" \ > -fno-unit-at-a-time \ > -mno-align-long-strings \ > -mrtd \ > - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ > -DBOOT2 \ > -DFLAGS=${BOOT_BOOT1_FLAGS} \ > -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ > > Modified: head/sys/boot/pc98/boot2/Makefile > ============================================================================== > --- head/sys/boot/pc98/boot2/Makefile Wed Jan 5 21:38:02 2011 (r217027) > +++ head/sys/boot/pc98/boot2/Makefile Wed Jan 5 21:46:08 2011 (r217028) > @@ -28,7 +28,6 @@ CFLAGS= -Os \ > -fno-unit-at-a-time \ > -mno-align-long-strings \ > -mrtd \ > - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ > -D${BOOT2_UFS} \ > -DFLAGS=${BOOT_BOOT1_FLAGS} \ > -DSIOPRT=${BOOT_COMCONSOLE_PORT} \ -- a13x