53b4414a70
TLS "record layer offload" requires TOE, and bypasses most of the normal networking stack. It is also significantly less maintained. Allow users to compile it out to avoid issues. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Reviewed-by: John Hurley <john.hurley@netronome.com> Reviewed-by: Simon Horman <simon.horman@netronome.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
235 B
Makefile
12 lines
235 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the TLS subsystem.
|
|
#
|
|
|
|
obj-$(CONFIG_TLS) += tls.o
|
|
|
|
tls-y := tls_main.o tls_sw.o
|
|
|
|
tls-$(CONFIG_TLS_TOE) += tls_toe.o
|
|
tls-$(CONFIG_TLS_DEVICE) += tls_device.o tls_device_fallback.o
|