mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-04-12 23:21:34 +02:00
21 lines
568 B
Python
Executable File
21 lines
568 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""
|
|
Check that TF-PSA-Crypto files that can be regenerated are up-to-date, or update them.
|
|
"""
|
|
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
import scripts_path # pylint: disable=unused-import
|
|
from mbedtls_framework import config_macros
|
|
from mbedtls_framework import generate_files_helper
|
|
|
|
GENERATORS = [
|
|
config_macros.Current(shadow_missing_ok=True),
|
|
]
|
|
|
|
if __name__ == '__main__':
|
|
generate_files_helper.main(generators=GENERATORS,
|
|
description=__doc__)
|