On Fri, 10 Jul 2026 14:36:13 +0200, Rasmus Villemoes <[email protected]> wrote: > diff --git a/tools/binman/btool/openssl.py b/tools/binman/btool/openssl.py > index b26f087c447..370760ccaa5 100644 > --- a/tools/binman/btool/openssl.py > +++ b/tools/binman/btool/openssl.py > @@ -36,6 +36,14 @@ class Bintoolopenssl(bintool.Bintool): > name, 'openssl cryptography toolkit', > version_regex=r'OpenSSL (.*) \(', version_args='version') > > + def dict_to_config_section(self, section_name, d): > + if not d: > + return ''
Either remove this dead code or perhaps return a bare section header instead of an empty string so that config is at least structurally correct. -- Neha Malcom Francis <[email protected]>

