Skip to content

Commit

Permalink
tls: update Kconfig
Browse files Browse the repository at this point in the history
Missing crypto deps for some platforms.
Default to n for new module.

config: m68k-amcore_defconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 4.9.0

make.cross ARCH=m68k
All errors (new ones prefixed by >>):

   net/built-in.o: In function `tls_set_sw_offload':
>> (.text+0x732f8): undefined reference to `crypto_alloc_aead'
   net/built-in.o: In function `tls_set_sw_offload':
>> (.text+0x7333c): undefined reference to `crypto_aead_setkey'
   net/built-in.o: In function `tls_set_sw_offload':
>> (.text+0x73354): undefined reference to `crypto_aead_setauthsize'

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Dave Watson <davejwatson@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Dave Watson authored and davem330 committed Jun 18, 2017
1 parent ffe95ec commit d807ec6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions net/tls/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
config TLS
tristate "Transport Layer Security support"
depends on INET
default m
select CRYPTO
select CRYPTO_AES
select CRYPTO_GCM
default n
---help---
Enable kernel support for TLS protocol. This allows symmetric
encryption handling of the TLS protocol to be done in-kernel.

If unsure, say M.
If unsure, say N.

0 comments on commit d807ec6

Please sign in to comment.