diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-18 13:50:57 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-18 13:50:57 +0100 |
commit | 4bdff0ea29da7211fa4362211fa1d4ae413baa2f (patch) | |
tree | d724d51f30b13b2e7a0be1d3edbe753a8f3adaa5 /lib/loader | |
parent | 548534dfe99e0235962ff72c97762f939290b404 (diff) |
kconfig: ignore strings by default (implicit DFATOOL_KCONF_IGNORE_STRING=1)
Diffstat (limited to 'lib/loader')
-rw-r--r-- | lib/loader/kconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/loader/kconfig.py b/lib/loader/kconfig.py index e979ddf..8a5605e 100644 --- a/lib/loader/kconfig.py +++ b/lib/loader/kconfig.py @@ -45,7 +45,7 @@ class KConfigAttributes: accepted_symbol_types.remove("int") accepted_symbol_types.remove("hex") - if bool(int(os.getenv("DFATOOL_KCONF_IGNORE_STRING", 0))): + if bool(int(os.getenv("DFATOOL_KCONF_IGNORE_STRING", 1))): accepted_symbol_types.remove("string") self.symbol_names = sorted( |