aboutsummaryrefslogtreecommitdiffstats
path: root/testing/micropython/0000-unix-mpconfigport.patch
diff options
context:
space:
mode:
authorMarian Buschsieweke <marian.buschsieweke@ovgu.de>2020-01-16 21:29:23 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-16 23:07:21 +0100
commit8627a020f402c8f7ae786f567ee1c50a2d857baa (patch)
tree6028b79d60dfeca0ea729b111a577081633aeab8 /testing/micropython/0000-unix-mpconfigport.patch
parent964540779dc38f30266b1128c3fcb32a9f40ce41 (diff)
downloadaports-8627a020f402c8f7ae786f567ee1c50a2d857baa.tar.bz2
aports-8627a020f402c8f7ae786f567ee1c50a2d857baa.tar.xz
testing/micropython: upgrade to 1.12
Also: Re-enable aarch64, x86, s390x
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.