aboutsummaryrefslogtreecommitdiffstats
path: root/testing/micropython/0000-unix-mpconfigport.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/micropython/0000-unix-mpconfigport.patch')
-rw-r--r--testing/micropython/0000-unix-mpconfigport.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/testing/micropython/0000-unix-mpconfigport.patch b/testing/micropython/0000-unix-mpconfigport.patch
deleted file mode 100644
index 4175138928..0000000000
--- a/testing/micropython/0000-unix-mpconfigport.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- micropython-1.9.3-old/ports/unix/mpconfigport.mk
-+++ micropython-1.9.3/ports/unix/mpconfigport.mk
-@@ -9,7 +9,7 @@
- MICROPY_USE_READLINE = 1
-
- # btree module using Berkeley DB 1.xx
--MICROPY_PY_BTREE = 1
-+MICROPY_PY_BTREE = 0
-
- # _thread module using pthreads
- MICROPY_PY_THREAD = 1
-@@ -24,11 +24,11 @@
- MICROPY_PY_FFI = 1
-
- # ussl module requires one of the TLS libraries below
--MICROPY_PY_USSL = 1
-+MICROPY_PY_USSL = 0
- # axTLS has minimal size and fully integrated with MicroPython, but
- # implements only a subset of modern TLS functionality, so may have
- # problems with some servers.
--MICROPY_SSL_AXTLS = 1
-+MICROPY_SSL_AXTLS = 0
- # mbedTLS is more up to date and complete implementation, but also
- # more bloated. Configuring and building of mbedTLS should be done
- # outside of MicroPython, it can just link with mbedTLS library.