summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-06-02 01:39:01 (GMT)
committerSimon Glass <sjg@chromium.org>2017-07-11 16:08:19 (GMT)
commitf3b8e6470cb2d599ce021e3785827a9d4e360db0 (patch)
treefd4afd9b9a156c3c433dfd11c1eef5f86d3e2f5e /tools
parentddf91c64233e2a62cc7d70b3a22035a4161e418e (diff)
downloadu-boot-fsl-qoriq-f3b8e6470cb2d599ce021e3785827a9d4e360db0.tar.xz
moveconfig: Add a constant for auto.conf
This filename is used a few times. Move it to a constant before adding further uses. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/moveconfig.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index a6d473d..eb7ada2 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -262,6 +262,9 @@ COLOR_LIGHT_PURPLE = '1;35'
COLOR_LIGHT_CYAN = '1;36'
COLOR_WHITE = '1;37'
+AUTO_CONF_PATH = 'include/config/auto.conf'
+
+
### helper functions ###
def get_devnull():
"""Get the file object of '/dev/null' device."""
@@ -751,8 +754,7 @@ class KconfigParser:
self.autoconf = os.path.join(build_dir, 'include', 'autoconf.mk')
self.spl_autoconf = os.path.join(build_dir, 'spl', 'include',
'autoconf.mk')
- self.config_autoconf = os.path.join(build_dir, 'include', 'config',
- 'auto.conf')
+ self.config_autoconf = os.path.join(build_dir, AUTO_CONF_PATH)
self.defconfig = os.path.join(build_dir, 'defconfig')
def get_cross_compile(self):
@@ -1070,7 +1072,7 @@ class Slot:
self.state = STATE_DEFCONFIG
def do_autoconf(self):
- """Run 'make include/config/auto.conf'."""
+ """Run 'make AUTO_CONF_PATH'."""
self.cross_compile = self.parser.get_cross_compile()
if self.cross_compile is None:
@@ -1083,7 +1085,7 @@ class Slot:
if self.cross_compile:
cmd.append('CROSS_COMPILE=%s' % self.cross_compile)
cmd.append('KCONFIG_IGNORE_DUPLICATES=1')
- cmd.append('include/config/auto.conf')
+ cmd.append(AUTO_CONF_PATH)
self.ps = subprocess.Popen(cmd, stdout=self.devnull,
stderr=subprocess.PIPE,
cwd=self.current_src_dir)