From owner-svn-src-head@freebsd.org Mon Oct 9 23:24:31 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63D31E3EFB0; Mon, 9 Oct 2017 23:24:31 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from mail.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37B5D84F37; Mon, 9 Oct 2017 23:24:31 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by mail.baldwin.cx (Postfix) with ESMTPSA id E347910A87D; Mon, 9 Oct 2017 19:24:29 -0400 (EDT) From: John Baldwin To: Warner Losh Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r324452 - in head/sys/boot: . arm/uboot efi/boot1 efi/loader i386/gptboot i386/gptzfsboot i386/loader i386/zfsboot mips/beri/boot2 mips/beri/loader mips/uboot powerpc/kboot powerpc/ofw ... Date: Mon, 09 Oct 2017 16:23:35 -0700 Message-ID: <2405988.NgFGazePSZ@ralph.baldwin.cx> User-Agent: KMail/4.14.10 (FreeBSD/11.1-STABLE; KDE/4.14.30; amd64; ; ) In-Reply-To: <201710092212.v99MClEC011111@repo.freebsd.org> References: <201710092212.v99MClEC011111@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.baldwin.cx); Mon, 09 Oct 2017 19:24:30 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.99.2 at mail.baldwin.cx X-Virus-Status: Clean X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 09 Oct 2017 23:24:31 -0000 On Monday, October 09, 2017 10:12:47 PM Warner Losh wrote: > Author: imp > Date: Mon Oct 9 22:12:46 2017 > New Revision: 324452 > URL: https://svnweb.freebsd.org/changeset/base/324452 > > Log: > Define LIBSA* and use them instead of overloaded LIBSTAND > > LIBSA is the current stand alone library. LIBSA32 is the 32-bit > version of the library. LIBSAU is the userboot version of libsa. Use > the proper define instead of the more generic define. > > Sponsored by: Netflix > > Modified: > head/sys/boot/Makefile.inc > head/sys/boot/arm/uboot/Makefile > head/sys/boot/efi/boot1/Makefile > head/sys/boot/efi/loader/Makefile > head/sys/boot/i386/gptboot/Makefile > head/sys/boot/i386/gptzfsboot/Makefile > head/sys/boot/i386/loader/Makefile > head/sys/boot/i386/zfsboot/Makefile > head/sys/boot/mips/beri/boot2/Makefile > head/sys/boot/mips/beri/loader/Makefile > head/sys/boot/mips/uboot/Makefile > head/sys/boot/powerpc/kboot/Makefile > head/sys/boot/powerpc/ofw/Makefile > head/sys/boot/powerpc/ps3/Makefile > head/sys/boot/powerpc/uboot/Makefile > head/sys/boot/sparc64/loader/Makefile > head/sys/boot/userboot/userboot/Makefile > > Modified: head/sys/boot/Makefile.inc > ============================================================================== > --- head/sys/boot/Makefile.inc Mon Oct 9 22:12:39 2017 (r324451) > +++ head/sys/boot/Makefile.inc Mon Oct 9 22:12:46 2017 (r324452) > @@ -6,6 +6,12 @@ > __BOOT_MAKEFILE_INC__=${MFILE} > > SASRC=${SRCTOP}/lib/libstand > +# Normal stand alone library > +LIBSA=${OBJTOP}/lib/libstand/libstand.a > +# stand alone library compiled for 32-bit version of the processor > +LIBSA32=${OBJTOP}/sys/boot/libstand32/libstand.a > +# stand along library compiled for userboot > +LIBSAU=${OBJTOP}/sys/boot/userboot/libstand/libstand.a s/along/alone/. bde@ probably prefers that the comments start with a capital letter as well. -- John Baldwin