Adds to footprint.sh MBEDTLS_NO_PLATFORM_ENTROPY
For baremetal builds MBEDTLS_NO_PLATFORM_ENTROPY must now be set to avoid the build failing. Fixes #449.
This commit is contained in:
parent
2181449d5c
commit
c3352d6be6
1 changed files with 20 additions and 1 deletions
|
@ -1,5 +1,23 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2015-2016, ARM Limited, All Rights Reserved
|
||||||
|
#
|
||||||
|
# Purpose
|
||||||
|
#
|
||||||
|
# This script determines ROM size (or code size) for the standard mbed TLS
|
||||||
|
# configurations, when built for a Cortex M3/M4 target.
|
||||||
|
#
|
||||||
|
# Configurations included:
|
||||||
|
# default include/mbedtls/config.h
|
||||||
|
# yotta yotta/module/mbedtls/config.h
|
||||||
|
# thread configs/config-thread.h
|
||||||
|
# suite-b configs/config-suite-b.h
|
||||||
|
# psk configs/config-ccm-psk-tls1_2.h
|
||||||
|
#
|
||||||
|
# Usage: footprint.sh
|
||||||
|
#
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
CONFIG_H='include/mbedtls/config.h'
|
CONFIG_H='include/mbedtls/config.h'
|
||||||
|
@ -48,6 +66,7 @@ doit()
|
||||||
scripts/config.pl unset MBEDTLS_NET_C || true
|
scripts/config.pl unset MBEDTLS_NET_C || true
|
||||||
scripts/config.pl unset MBEDTLS_TIMING_C || true
|
scripts/config.pl unset MBEDTLS_TIMING_C || true
|
||||||
scripts/config.pl unset MBEDTLS_FS_IO || true
|
scripts/config.pl unset MBEDTLS_FS_IO || true
|
||||||
|
scripts/config.pl --force set MBEDTLS_NO_PLATFORM_ENTROPY || true
|
||||||
} >/dev/null 2>&1
|
} >/dev/null 2>&1
|
||||||
|
|
||||||
CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld \
|
CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld \
|
||||||
|
|
Loading…
Reference in a new issue