Re: [PATCH v5 13/16] buildman: Ensure config_fname is inited

2022-11-22 Thread Simon Glass
Init this variable at the top level since it is a global.

Signed-off-by: Simon Glass 
---

Changes in v5:
- Add new patch to ensure config_fname is inited

 tools/buildman/bsettings.py | 1 +
 1 file changed, 1 insertion(+)

Applied to u-boot-dm, thanks!


[PATCH v5 13/16] buildman: Ensure config_fname is inited

2022-11-09 Thread Simon Glass
Init this variable at the top level since it is a global.

Signed-off-by: Simon Glass 
---

Changes in v5:
- Add new patch to ensure config_fname is inited

 tools/buildman/bsettings.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py
index dcc200ea79d..9b93b7a51e1 100644
--- a/tools/buildman/bsettings.py
+++ b/tools/buildman/bsettings.py
@@ -5,6 +5,7 @@ import configparser
 import os
 import io
 
+config_fname = None
 
 def Setup(fname=''):
 """Set up the buildman settings module by reading config files
-- 
2.38.1.431.g37b22c650d-goog