Fix PSA macro identification regexp

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei 2024-12-05 19:06:19 +01:00
parent 2e3f17a40f
commit 5034a1f597
No known key found for this signature in database
GPG Key ID: 6310BD29B0BFF98C

View File

@ -397,7 +397,7 @@ class CombinedConfig(config_common.Config):
for configfile in [self.mbedtls_configfile, self.crypto_configfile]
for (active, name, value, section) in configfile.parse_file()})
_crypto_regexp = re.compile(r'$PSA_.*')
_crypto_regexp = re.compile(r'^PSA_.*')
def _get_configfile(self, name=None):
"""Find a config type for a setting name"""