Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 09 Oct 2017 16:23:35 -0700
From:      John Baldwin <jhb@freebsd.org>
To:        Warner Losh <imp@freebsd.org>
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 ...
Message-ID:  <2405988.NgFGazePSZ@ralph.baldwin.cx>
In-Reply-To: <201710092212.v99MClEC011111@repo.freebsd.org>
References:  <201710092212.v99MClEC011111@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?2405988.NgFGazePSZ>