You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
424 B
8 lines
424 B
5 years ago
|
#! /bin/bash -e
|
||
|
# Generate esp32_mbedtls_errors.c for use in the Esp32 port, with the ESP-IDF version of mbedtls
|
||
|
# The IDF_PATH env var must be set to the top-level dir of ESPIDF
|
||
|
echo "IDF_PATH=$IDF_PATH"
|
||
|
MBEDTLS=$IDF_PATH/components/mbedtls/mbedtls
|
||
|
patch -o esp32_generate_errors.pl $MBEDTLS/scripts/generate_errors.pl <generate_errors.diff
|
||
|
perl ./esp32_generate_errors.pl $MBEDTLS/include/mbedtls . esp32_mbedtls_errors.c
|