aboutsummaryrefslogtreecommitdiff
path: root/tools/genboardscfg.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-08-04 03:30:30 -0600
committerSimon Glass <sjg@chromium.org>2017-09-11 21:43:58 -0600
commit8639f69a61b47971dba47ab5ed72e47436729bb1 (patch)
tree05510aa7c0d0ef1acc2aab1561c6f65b1ca133be /tools/genboardscfg.py
parentee3e520dad0b368df4541cd0af0d4011cf481e5b (diff)
downloadu-boot-8639f69a61b47971dba47ab5ed72e47436729bb1.zip
u-boot-8639f69a61b47971dba47ab5ed72e47436729bb1.tar.gz
u-boot-8639f69a61b47971dba47ab5ed72e47436729bb1.tar.bz2
genconfig.py: Print defconfig next to warnings
At present we sometimes see warnings of the form: /tmp/tmpMA89kB:36: warning: overriding the value of CMD_SPL. Old value: "y", new value: "y". This is not very useful as it does not show whch defconfig file it relates to. Update the tool to show this. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/genboardscfg.py')
-rwxr-xr-xtools/genboardscfg.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py
index 2e871fea..2345a19 100755
--- a/tools/genboardscfg.py
+++ b/tools/genboardscfg.py
@@ -124,7 +124,7 @@ class KconfigScanner:
os.environ['srctree'] = os.getcwd()
os.environ['UBOOTVERSION'] = 'dummy'
os.environ['KCONFIG_OBJDIR'] = ''
- self._conf = kconfiglib.Config()
+ self._conf = kconfiglib.Config(print_warnings=False)
def __del__(self):
"""Delete a leftover temporary file before exit.
@@ -166,7 +166,10 @@ class KconfigScanner:
else:
f.write(line[colon + 1:])
- self._conf.load_config(self._tmpfile)
+ warnings = self._conf.load_config(self._tmpfile)
+ if warnings:
+ for warning in warnings:
+ print '%s: %s' % (defconfig, warning)
try_remove(self._tmpfile)
self._tmpfile = None