diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-12-29 12:03:07 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-29 17:03:34 +0100 |
commit | 6b2df7ec5703093fc6e81c45834b20ab2ace95c0 (patch) | |
tree | fd3f10ecf9015a224277e94b47edf502caedaa00 /package/mbedtls/Config.in | |
parent | 5dc0f6aaab8f3a845b1db08439cff27832a53930 (diff) | |
download | buildroot-6b2df7ec5703093fc6e81c45834b20ab2ace95c0.tar.gz buildroot-6b2df7ec5703093fc6e81c45834b20ab2ace95c0.zip |
mbedtls: new package
Add the mbed TLS library, formerly known as PolarSSL.
The 2.0+ version can live side-by-side with polarssl since it was
renamed, hence can be added with no conflict.
Use the Apache-2.0 license variant since it's somewhat more flexible,
the codebase is the same as the GPLv2 variant, just copyright
headers/license file changed.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/mbedtls/Config.in')
-rw-r--r-- | package/mbedtls/Config.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/mbedtls/Config.in b/package/mbedtls/Config.in new file mode 100644 index 0000000000..24f0f489d4 --- /dev/null +++ b/package/mbedtls/Config.in @@ -0,0 +1,20 @@ +config BR2_PACKAGE_MBEDTLS + bool "mbedtls" + help + mbed TLS (formerly known as PolarSSL) makes it trivially easy + for developers to include cryptographic and SSL/TLS + capabilities in their (embedded) products, facilitating this + functionality with a minimal coding footprint. + + https://tls.mbed.org/ + +if BR2_PACKAGE_MBEDTLS + +config BR2_PACKAGE_MBEDTLS_PROGRAMS + bool "mbedtls programs" + depends on BR2_USE_MMU # fork() + help + This option enables the installation and the build of + mbed TLS companion programs. + +endif |