git: 294113687ecb - stable/13 - Flip the default for OPENSSL_KTLS to arm64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Oct 2021 21:26:41 UTC
The branch stable/13 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=294113687ecb807ee986556713f10bbb6dc84026 commit 294113687ecb807ee986556713f10bbb6dc84026 Author: Allan Jude <allanjude@FreeBSD.org> AuthorDate: 2021-01-28 21:28:18 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2021-10-08 18:29:10 +0000 Flip the default for OPENSSL_KTLS to arm64 This is required to make use of KERN_TLS Reviewed by: jhb Sponsored by: Ampere Computing Submitted by: Klara, Inc. Differential Revision: https://reviews.freebsd.org/D28405 (cherry picked from commit e6b7809cdfc4389d2fc1df2c7fdff08a4a110c77) --- share/mk/src.opts.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 6bc8ef0672a1..fa007cb4bfda 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -329,8 +329,8 @@ BROKEN_OPTIONS+=LOADER_UBOOT BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA .endif -# Kernel TLS is enabled by default on amd64 -.if ${__T} == "amd64" +# Kernel TLS is enabled by default on amd64 and aarch64 +.if ${__T} == "aarch64" || ${__T} == "amd64" __DEFAULT_YES_OPTIONS+=OPENSSL_KTLS .else __DEFAULT_NO_OPTIONS+=OPENSSL_KTLS