From owner-svn-src-stable-10@FreeBSD.ORG Sat May 17 01:00:01 2014 Return-Path: Delivered-To: svn-src-stable-10@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C875BCB; Sat, 17 May 2014 01:00:01 +0000 (UTC) Received: from mho-01-ewr.mailhop.org (mho-03-ewr.mailhop.org [204.13.248.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1F5412B07; Sat, 17 May 2014 01:00:00 +0000 (UTC) Received: from c-24-8-230-52.hsd1.co.comcast.net ([24.8.230.52] helo=damnhippie.dyndns.org) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1WlSye-000CNO-Jh; Sat, 17 May 2014 00:59:52 +0000 Received: from [172.22.42.240] (revolution.hippie.lan [172.22.42.240]) by damnhippie.dyndns.org (8.14.3/8.14.3) with ESMTP id s4H0xovj039866; Fri, 16 May 2014 18:59:50 -0600 (MDT) (envelope-from ian@FreeBSD.org) X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 24.8.230.52 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19S3Uh7qOC70gBMjlbLEgdg Subject: Re: svn commit: r266273 - in stable/10/sys: amd64/conf conf i386/conf From: Ian Lepore To: Nathan Whitehorn In-Reply-To: <5376AFFA.3010902@freebsd.org> References: <201405162255.s4GMt1GR077643@svn.freebsd.org> <5376AFFA.3010902@freebsd.org> Content-Type: text/plain; charset="us-ascii" Date: Fri, 16 May 2014 18:59:49 -0600 Message-ID: <1400288389.1152.1.camel@revolution.hippie.lan> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: svn-src-stable@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, svn-src-stable-10@FreeBSD.org X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 May 2014 01:00:01 -0000 We need to ask Sean Bruno about that. I just noticed that this change hadn't been merged along with the others it was related to when it caused me a build error. -- Ian On Fri, 2014-05-16 at 17:40 -0700, Nathan Whitehorn wrote: > I missed the original commit of this, but why doesn't this code work on > non-x86 systems? QEMU works perfectly fine on other architectures. > -Nathan > > On 05/16/14 15:55, Ian Lepore wrote: > > Author: ian > > Date: Fri May 16 22:55:01 2014 > > New Revision: 266273 > > URL: http://svnweb.freebsd.org/changeset/base/266273 > > > > Log: > > MFC 264304: Really only allow IMGACT_BINMISC for amd64/i386 builds. > > > > Modified: > > stable/10/sys/amd64/conf/NOTES > > stable/10/sys/conf/NOTES > > stable/10/sys/i386/conf/NOTES > > Directory Properties: > > stable/10/ (props changed) > > > > Modified: stable/10/sys/amd64/conf/NOTES > > ============================================================================== > > --- stable/10/sys/amd64/conf/NOTES Fri May 16 21:56:33 2014 (r266272) > > +++ stable/10/sys/amd64/conf/NOTES Fri May 16 22:55:01 2014 (r266273) > > @@ -650,3 +650,6 @@ device ndis > > > > # Linux-specific pseudo devices support > > device lindev > > + > > +# Module to enable execution of application via emulators like QEMU > > +options IMAGACT_BINMISC > > > > Modified: stable/10/sys/conf/NOTES > > ============================================================================== > > --- stable/10/sys/conf/NOTES Fri May 16 21:56:33 2014 (r266272) > > +++ stable/10/sys/conf/NOTES Fri May 16 22:55:01 2014 (r266273) > > @@ -2973,6 +2973,3 @@ options RANDOM_YARROW # Yarrow RNG > > ##options RANDOM_FORTUNA # Fortuna RNG - not yet implemented > > options RANDOM_DEBUG # Debugging messages > > options RANDOM_RWFILE # Read and write entropy cache > > - > > -# Module to enable execution of application via emulators like QEMU > > -options IMAGACT_BINMISC > > > > Modified: stable/10/sys/i386/conf/NOTES > > ============================================================================== > > --- stable/10/sys/i386/conf/NOTES Fri May 16 21:56:33 2014 (r266272) > > +++ stable/10/sys/i386/conf/NOTES Fri May 16 22:55:01 2014 (r266273) > > @@ -1060,3 +1060,6 @@ options VM_KMEM_SIZE_SCALE > > # asr old ioctls support, needed by raidutils > > > > options ASR_COMPAT > > + > > +# Module to enable execution of application via emulators like QEMU > > +options IMAGACT_BINMISC > > > >