mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
tools: moveconfig: rename update_defconfig() to update_dotconfig()
Commit 96464badc7
("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>
This commit is contained in:
parent
e423d17fcc
commit
6ff36d2174
1 changed files with 5 additions and 5 deletions
|
@ -459,13 +459,13 @@ class KconfigParser:
|
||||||
|
|
||||||
return (action, value)
|
return (action, value)
|
||||||
|
|
||||||
def update_defconfig(self, defconfig):
|
def update_dotconfig(self, defconfig):
|
||||||
"""Parse files for the config options and update the defconfig.
|
"""Parse files for the config options and update the .config.
|
||||||
|
|
||||||
This function parses the given defconfig, the generated .config
|
This function parses the given defconfig, the generated .config
|
||||||
and include/autoconf.mk searching the target options.
|
and include/autoconf.mk searching the target options.
|
||||||
Move the config option(s) to the defconfig or do nothing if unneeded.
|
Move the config option(s) to the .config as needed.
|
||||||
Also, display the log to show what happened to this defconfig.
|
Also, display the log to show what happened to the .config.
|
||||||
|
|
||||||
Arguments:
|
Arguments:
|
||||||
defconfig: defconfig name.
|
defconfig: defconfig name.
|
||||||
|
@ -632,7 +632,7 @@ class Slot:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if self.state == STATE_AUTOCONF:
|
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),
|
print ' %d defconfigs out of %d\r' % (self.num + 1, self.total),
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
Loading…
Add table
Reference in a new issue