Skip to content

Commit 9ae0713

Browse files
committed
unix/mpconfigport.mk: Update descriptions of readline and TLS options.
1 parent b8fef67 commit 9ae0713

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

unix/mpconfigport.mk

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
MICROPY_FORCE_32BIT = 0
55

66
# This variable can take the following values:
7-
# 0 - no readline, just simple input
7+
# 0 - no readline, just simple stdin input
88
# 1 - use MicroPython version of readline
99
MICROPY_USE_READLINE = 1
1010

@@ -23,9 +23,15 @@ MICROPY_PY_SOCKET = 1
2323
# ffi module requires libffi (libffi-dev Debian package)
2424
MICROPY_PY_FFI = 1
2525

26-
# ussl module requires axtls
26+
# ussl module requires one of the TLS libraries below
2727
MICROPY_PY_USSL = 1
28+
# axTLS has minimal size and fully integrated with MicroPython, but
29+
# implements only a subset of modern TLS functionality, so may have
30+
# problems with some servers.
2831
MICROPY_SSL_AXTLS = 1
32+
# mbedTLS is more up to date and complete implementation, but also
33+
# more bloated. Configuring and building of mbedTLS should be done
34+
# outside of MicroPython, it can just link with mbedTLS library.
2935
MICROPY_SSL_MBEDTLS = 0
3036

3137
# jni module requires JVM/JNI

0 commit comments

Comments
 (0)