[U-Boot] [PATCHv2 2/3] genboardscfg.py: Remove "warnings" print section
Tom Rini
trini at konsulko.com
Fri Sep 20 21:42:08 UTC 2019
We tell kconfiglib to not print any warnings to us so drop this code as
it will be unused.
Cc: Masahiro Yamada <yamada.masahiro at socionext.com>
Signed-off-by: Tom Rini <trini at konsulko.com>
---
Changes in v2:
- New patch
---
tools/genboardscfg.py | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py
index e9a9c11865b9..9fd2bd30efd5 100755
--- a/tools/genboardscfg.py
+++ b/tools/genboardscfg.py
@@ -165,11 +165,7 @@ class KconfigScanner:
else:
f.write(line[colon + 1:])
- warnings = self._conf.load_config(self._tmpfile)
- if warnings:
- for warning in warnings:
- print('%s: %s' % (defconfig, warning))
-
+ self._conf.load_config(self._tmpfile)
try_remove(self._tmpfile)
self._tmpfile = None
--
2.7.4
More information about the U-Boot
mailing list