summaryrefslogtreecommitdiff
path: root/tools/buildman/control.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-11-13 14:25:53 -0700
committerSimon Glass <sjg@chromium.org>2016-12-02 10:37:47 -0700
commitb464f8e7ded33dc3f3c26dd905e1fa9807dd7526 (patch)
treea5de172890a37ff9d53ad5378aa44bebb45e966e /tools/buildman/control.py
parent94d2ebe5bcbbbd15e879ee2204e037f321d66b68 (diff)
downloadu-boot-imx-b464f8e7ded33dc3f3c26dd905e1fa9807dd7526.zip
u-boot-imx-b464f8e7ded33dc3f3c26dd905e1fa9807dd7526.tar.gz
u-boot-imx-b464f8e7ded33dc3f3c26dd905e1fa9807dd7526.tar.bz2
buildman: Squash useless output from -K
When using #define CONFIG_SOME_OPTION, the value it set to '1'. When using defconfig (i.e. CONFIG_SOME_OPTION=y) the value is set to 'y'. This results in differences showing up with -K. These differences are seldom useful. Adjust buildman to suppress these differences by default. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/control.py')
-rw-r--r--tools/buildman/control.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 0b3ba94..545c2cb 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -259,7 +259,8 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
verbose_build=options.verbose_build,
incremental=options.incremental,
per_board_out_dir=options.per_board_out_dir,
- config_only=options.config_only)
+ config_only=options.config_only,
+ squash_config_y=not options.preserve_config_y)
builder.force_config_on_failure = not options.quick
if make_func:
builder.do_make = make_func