summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-05-19 15:51:50 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2016-06-13 07:46:28 +0900
commit6ff36d21746d61d7a2af08ea0bd973059d91d306 (patch)
treefee1f82a47fa75615e400858b16584fb8c894cd4
parente423d17fccd8a8bd6f46aa69fe910e7cac77cd3b (diff)
downloadtalos-obmc-uboot-6ff36d21746d61d7a2af08ea0bd973059d91d306.tar.gz
talos-obmc-uboot-6ff36d21746d61d7a2af08ea0bd973059d91d306.zip
tools: moveconfig: rename update_defconfig() to update_dotconfig()
Commit 96464badc794 ("moveconfig: Always run savedefconfig on the moved config") changed how defconfig files were updated. Since then, the function update_defconfig() does not modify defconfig files at all (instead, they are updated by "make savedefconfig"), so update_dotconfig() is a better fit for this function. Also, update the comment block to match the actual behavior. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
-rwxr-xr-xtools/moveconfig.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index fd98e41c5c..9029287b10 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -459,13 +459,13 @@ class KconfigParser:
return (action, value)
- def update_defconfig(self, defconfig):
- """Parse files for the config options and update the defconfig.
+ def update_dotconfig(self, defconfig):
+ """Parse files for the config options and update the .config.
This function parses the given defconfig, the generated .config
and include/autoconf.mk searching the target options.
- Move the config option(s) to the defconfig or do nothing if unneeded.
- Also, display the log to show what happened to this defconfig.
+ Move the config option(s) to the .config as needed.
+ Also, display the log to show what happened to the .config.
Arguments:
defconfig: defconfig name.
@@ -632,7 +632,7 @@ class Slot:
return True
if self.state == STATE_AUTOCONF:
- self.parser.update_defconfig(self.defconfig)
+ self.parser.update_dotconfig(self.defconfig)
print ' %d defconfigs out of %d\r' % (self.num + 1, self.total),
sys.stdout.flush()
OpenPOWER on IntegriCloud