Browse Source

Add compilation of nuttx_crypto

NuttX has lots of usable functionality for crypto, such as rng with entropy pool

Signed-off-by: Jukka Laitinen <jukkax@ssrc.tii.ae>
master
Jukka Laitinen 4 years ago committed by Beat Küng
parent
commit
be4f7cabf9
  1. 1
      platforms/nuttx/CMakeLists.txt
  2. 1
      platforms/nuttx/NuttX/CMakeLists.txt

1
platforms/nuttx/CMakeLists.txt

@ -94,6 +94,7 @@ list(APPEND nuttx_libs @@ -94,6 +94,7 @@ list(APPEND nuttx_libs
nuttx_fs
nuttx_mm
nuttx_sched
nuttx_crypto
)
if (CONFIG_NET)

1
platforms/nuttx/NuttX/CMakeLists.txt

@ -319,6 +319,7 @@ add_nuttx_dir(sched sched y -D__KERNEL__) @@ -319,6 +319,7 @@ add_nuttx_dir(sched sched y -D__KERNEL__)
add_nuttx_dir(c libs/libc n "")
add_nuttx_dir(xx libs/libxx n "")
add_nuttx_dir(mm mm n "")
add_nuttx_dir(crypto crypto y -D__KERNEL__)
if(CONFIG_NET)
add_nuttx_dir(net net y -D__KERNEL__)

Loading…
Cancel
Save