Merge pull request #3279 from yanesca/mbedtls-hardware-acceleration-configuration

Move crypto hardware acceleration configuration.
pull/3321/head
Martin Kojtal 2016-11-21 23:22:16 +00:00 committed by GitHub
commit f7068eb57a
2 changed files with 4 additions and 1 deletions

View File

@ -93,7 +93,6 @@ clean:
rm -f $(TARGET_PREFIX)apache-2.0.txt
rm -f $(TARGET_PREFIX)VERSION.txt
rm -f $(TARGET_PREFIX)AUTHORS.txt
rm -rf $(TARGET_PREFIX)/targets
rm -rf $(TARGET_SRC)
rm -rf $(TARGET_INC)
rm -rf $(MBED_TLS_DIR)

View File

@ -20,3 +20,7 @@
#if defined(DEVICE_TRNG)
#define MBEDTLS_ENTROPY_HARDWARE_ALT
#endif
#if defined(MBEDTLS_CONFIG_HW_SUPPORT)
#include "mbedtls_device.h"
#endif