Make no_deprecated naming more consistent
Use "no_deprecated" both in the name of the configuration and in the
name of all.sh components, rather than a mixture of "no_deprecated"
and "non_deprecated".
Make all.sh component names more consistent.
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
diff --git a/scripts/config.py b/scripts/config.py
index 8f69f9f..63d052b 100755
--- a/scripts/config.py
+++ b/scripts/config.py
@@ -302,10 +302,10 @@
'MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO',
])
-def non_deprecated_adapter(adapter):
+def no_deprecated_adapter(adapter):
"""Modify an adapter to disable deprecated symbols.
- ``non_deprecated_adapter(adapter)(name, active, section)`` is like
+ ``no_deprecated_adapter(adapter)(name, active, section)`` is like
``adapter(name, active, section)``, but unsets all deprecated symbols
and sets ``MBEDTLS_DEPRECATED_REMOVED``.
"""
@@ -480,7 +480,7 @@
Exclude alternative implementations and platform support
options, as well as some options that are awkward to test.
""")
- add_adapter('full_non_deprecated', non_deprecated_adapter(full_adapter),
+ add_adapter('full_no_deprecated', no_deprecated_adapter(full_adapter),
"""Uncomment most non-deprecated features.
Like "full", but without deprecated features.
""")