Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Oct 2020 17:00:43 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r366898 - in head: secure/lib/libcrypto secure/lib/libcrypto/aarch64 secure/lib/libcrypto/amd64 secure/lib/libcrypto/arm secure/lib/libcrypto/engines/padlock secure/lib/libcrypto/i386 s...
Message-ID:  <202010201700.09KH0huo032663@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Tue Oct 20 17:00:43 2020
New Revision: 366898
URL: https://svnweb.freebsd.org/changeset/base/366898

Log:
  Move generated OpenSSL assembly routines into the kernel sources.
  
  Sponsored by:	Netflix

Added:
  head/sys/crypto/openssl/
  head/sys/crypto/openssl/aarch64/
     - copied from r366897, head/secure/lib/libcrypto/aarch64/
  head/sys/crypto/openssl/amd64/
     - copied from r366897, head/secure/lib/libcrypto/amd64/
  head/sys/crypto/openssl/arm/
     - copied from r366897, head/secure/lib/libcrypto/arm/
  head/sys/crypto/openssl/i386/
     - copied from r366897, head/secure/lib/libcrypto/i386/
Deleted:
  head/secure/lib/libcrypto/aarch64/
  head/secure/lib/libcrypto/amd64/
  head/secure/lib/libcrypto/arm/
  head/secure/lib/libcrypto/i386/
Modified:
  head/secure/lib/libcrypto/Makefile
  head/secure/lib/libcrypto/engines/padlock/Makefile

Modified: head/secure/lib/libcrypto/Makefile
==============================================================================
--- head/secure/lib/libcrypto/Makefile	Tue Oct 20 16:48:45 2020	(r366897)
+++ head/secure/lib/libcrypto/Makefile	Tue Oct 20 17:00:43 2020	(r366898)
@@ -459,7 +459,7 @@ opensslconf.h: opensslconf.h.in
 PICFLAG+=	-DOPENSSL_PIC
 
 .if defined(ASM_${MACHINE_CPUARCH})
-.PATH:	${.CURDIR}/${MACHINE_CPUARCH}
+.PATH:	${SRCTOP}/sys/crypto/openssl/${MACHINE_CPUARCH}
 .if defined(ASM_amd64)
 .PATH:	${LCRYPTO_SRC}/crypto/bn/asm
 .endif

Modified: head/secure/lib/libcrypto/engines/padlock/Makefile
==============================================================================
--- head/secure/lib/libcrypto/engines/padlock/Makefile	Tue Oct 20 16:48:45 2020	(r366897)
+++ head/secure/lib/libcrypto/engines/padlock/Makefile	Tue Oct 20 17:00:43 2020	(r366898)
@@ -11,4 +11,4 @@ SRCS+=	e_padlock-x86.S
 
 .include <bsd.lib.mk>
 
-.PATH:	${.CURDIR:H:H}/${MACHINE_CPUARCH}
+.PATH:	${SRCTOP}/sys/crypto/openssl/${MACHINE_CPUARCH}



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