From owner-svn-src-head@FreeBSD.ORG Tue May 28 21:22:15 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0C2C4EC7; Tue, 28 May 2013 21:22:15 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from onyx.glenbarber.us (onyx.glenbarber.us [199.48.134.227]) by mx1.freebsd.org (Postfix) with ESMTP id C8491A68; Tue, 28 May 2013 21:22:14 +0000 (UTC) Received: from glenbarber.us (static-108-16-252-210.phlapa.fios.verizon.net [108.16.252.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gjb) by onyx.glenbarber.us (Postfix) with ESMTPSA id 4B90723F804; Tue, 28 May 2013 17:22:13 -0400 (EDT) DKIM-Filter: OpenDKIM Filter v2.8.3 onyx.glenbarber.us 4B90723F804 Authentication-Results: onyx.glenbarber.us; dkim=none reason="no signature"; dkim-adsp=none Date: Tue, 28 May 2013 17:22:11 -0400 From: Glen Barber To: Peter Wemm Subject: Re: svn commit: r251058 - head Message-ID: <20130528212211.GA1652@glenbarber.us> References: <201305280952.r4S9qShX012991@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?= X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 28 May 2013 21:22:15 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, May 28, 2013 at 01:04:56PM -0700, Peter Wemm wrote: > On Tue, May 28, 2013 at 2:52 AM, Dag-Erling Sm=F8rgrav = wrote: > > Author: des > > Date: Tue May 28 09:52:28 2013 > > New Revision: 251058 > > URL: http://svnweb.freebsd.org/changeset/base/251058 > > > > Log: > > During buildkernel, print a banner before building modules. > > > > Modified: > > head/Makefile.inc1 > > > > Modified: head/Makefile.inc1 > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/Makefile.inc1 Tue May 28 09:51:27 2013 (r251057) > > +++ head/Makefile.inc1 Tue May 28 09:52:28 2013 (r251058) > > @@ -983,9 +983,16 @@ buildkernel: > > .endif > > @echo > > @echo "--------------------------------------------------------= ------" > > - @echo ">>> stage 3.2: building everything" > > + @echo ">>> stage 3.2: building the kernel" > > @echo "--------------------------------------------------------= ------" > > - cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ > > + cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} kernel-all -DNO_MODULES_O= BJ > > + @echo > > +.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${K= ERNSRCDIR}/modules) > > + @echo "--------------------------------------------------------= ------" > > + @echo ">>> stage 3.3: building the modules" > > + @echo "--------------------------------------------------------= ------" > > + cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} modules-all -DNO_MODULES_= OBJ > > +.endif > > @echo "--------------------------------------------------------= ------" > > @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=3DC= date`" > > @echo "--------------------------------------------------------= ------" >=20 > Please back this out or fix it ASAP. You broke every single machine in > the freebsd.org cluster. >=20 > make: don't know how to make modules-all. Stop > *** [buildkernel] Error code 2 >=20 > You are causing it to stop respecting makeoptions in the kernel config > files. eg: >=20 > eg: >=20 > makeoptions NO_MODULES=3Dno > or > makeoptions MODULES_OVERRIDE=3D"zfs opensolaris" >=20 > If you really want this echo here then you're going to need to reach > down into the internals and make 'modules-all' work even when > NO_MODULES is set. This also breaks i386 PAE build in tinderbox... make: don't know how to make modules-all. Stop make: stopped in /obj/i386.i386/src/sys/PAE *** Error code 2 Stop. make: stopped in /src *** Error code 1 Stop in /src. TB --- 2013-05-28 21:10:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-05-28 21:10:00 - ERROR: failed to build PAE kernel TB --- 2013-05-28 21:10:00 - 18049.16 user 3184.18 system 22779.88 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-i386.full Glen --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.20 (FreeBSD) iQEcBAEBCAAGBQJRpSADAAoJEFJPDDeguUajSToH/ArJ9GNXt0uPZ/GaNb3yUejf uJtCevrtHnBhDudrSuhKlTCXzH4fs5Nveg6/TsAym9au5VIaE0CUtXs/uxSw6FN0 aH5KYcK5uJ/x2cD8nvJfrQOdXuocu1VA6J96zoPgnqmYDbqQVs+ykYHb8NTNzeh6 bYRUA6oOsJYg2KI90XJ7j2z1vLXaa7GbdATmFBsMP7NmosW69EtMfJqpT4QH6DJm zlQnw11Fp5+8PbYLg4bpYt2t6G2kYvoV024ZLjNAPokgfItmln8GxRTPwuCQ7QLc 1htKPSX9KqRKmqkUZWCFB1CUI70BQdUZGrfViGoVOCYuXzdA79kEd/H7O04N6BY= =hHgM -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe--