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 ...
John Baldwin
jhb at freebsd.org
Mon Oct 9 23:24:31 UTC 2017
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
More information about the svn-src-all
mailing list