blob: 5e5ca06d8f9542537abcfffd352e971605963ae3 [file] [log] [blame]
Masahiro Yamadab6160812015-05-20 11:36:07 +09001#!/usr/bin/env python2
2#
3# Author: Masahiro Yamada <yamada.masahiro@socionext.com>
4#
5# SPDX-License-Identifier: GPL-2.0+
6#
7
8"""
9Move config options from headers to defconfig files.
10
11Since Kconfig was introduced to U-Boot, we have worked on moving
12config options from headers to Kconfig (defconfig).
13
14This tool intends to help this tremendous work.
15
16
17Usage
18-----
19
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090020First, you must edit the Kconfig to add the menu entries for the configs
Joe Hershberger166edec2015-05-19 13:21:17 -050021you are moving.
22
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090023And then run this tool giving CONFIG names you want to move.
24For example, if you want to move CONFIG_CMD_USB and CONFIG_SYS_TEXT_BASE,
25simply type as follows:
Masahiro Yamadab6160812015-05-20 11:36:07 +090026
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090027 $ tools/moveconfig.py CONFIG_CMD_USB CONFIG_SYS_TEXT_BASE
Masahiro Yamadab6160812015-05-20 11:36:07 +090028
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090029The tool walks through all the defconfig files and move the given CONFIGs.
Masahiro Yamadab6160812015-05-20 11:36:07 +090030
31The log is also displayed on the terminal.
32
Masahiro Yamada465b7c02016-05-19 15:52:02 +090033The log is printed for each defconfig as follows:
Masahiro Yamadab6160812015-05-20 11:36:07 +090034
Masahiro Yamada465b7c02016-05-19 15:52:02 +090035<defconfig_name>
36 <action1>
37 <action2>
38 <action3>
39 ...
Masahiro Yamadab6160812015-05-20 11:36:07 +090040
Masahiro Yamada465b7c02016-05-19 15:52:02 +090041<defconfig_name> is the name of the defconfig.
42
43<action*> shows what the tool did for that defconfig.
Masahiro Yamadab6160812015-05-20 11:36:07 +090044It looks like one of the followings:
45
46 - Move 'CONFIG_... '
47 This config option was moved to the defconfig
48
Masahiro Yamada5643d6e2016-05-19 15:51:56 +090049 - CONFIG_... is not defined in Kconfig. Do nothing.
50 The entry for this CONFIG was not found in Kconfig.
51 There are two common cases:
52 - You forgot to create an entry for the CONFIG before running
53 this tool, or made a typo in a CONFIG passed to this tool.
54 - The entry was hidden due to unmet 'depends on'.
55 This is correct behavior.
Masahiro Yamadab6160812015-05-20 11:36:07 +090056
Masahiro Yamada5643d6e2016-05-19 15:51:56 +090057 - 'CONFIG_...' is the same as the define in Kconfig. Do nothing.
58 The define in the config header matched the one in Kconfig.
59 We do not need to touch it.
Masahiro Yamadab6160812015-05-20 11:36:07 +090060
61 - Undefined. Do nothing.
62 This config option was not found in the config header.
63 Nothing to do.
64
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +090065 - Compiler is missing. Do nothing.
66 The compiler specified for this architecture was not found
67 in your PATH environment.
68 (If -e option is passed, the tool exits immediately.)
69
70 - Failed to process.
Masahiro Yamadab6160812015-05-20 11:36:07 +090071 An error occurred during processing this defconfig. Skipped.
72 (If -e option is passed, the tool exits immediately on error.)
73
74Finally, you will be asked, Clean up headers? [y/n]:
75
76If you say 'y' here, the unnecessary config defines are removed
77from the config headers (include/configs/*.h).
78It just uses the regex method, so you should not rely on it.
79Just in case, please do 'git diff' to see what happened.
80
81
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090082How does it work?
83-----------------
Masahiro Yamadab6160812015-05-20 11:36:07 +090084
85This tool runs configuration and builds include/autoconf.mk for every
86defconfig. The config options defined in Kconfig appear in the .config
87file (unless they are hidden because of unmet dependency.)
88On the other hand, the config options defined by board headers are seen
89in include/autoconf.mk. The tool looks for the specified options in both
Masahiro Yamadab903c4e2016-05-19 15:51:58 +090090of them to decide the appropriate action for the options. If the given
91config option is found in the .config, but its value does not match the
92one from the board header, the config option in the .config is replaced
93with the define in the board header. Then, the .config is synced by
94"make savedefconfig" and the defconfig is updated with it.
Masahiro Yamadab6160812015-05-20 11:36:07 +090095
96For faster processing, this tool handles multi-threading. It creates
97separate build directories where the out-of-tree build is run. The
98temporary build directories are automatically created and deleted as
99needed. The number of threads are chosen based on the number of the CPU
100cores of your system although you can change it via -j (--jobs) option.
101
102
103Toolchains
104----------
105
106Appropriate toolchain are necessary to generate include/autoconf.mk
107for all the architectures supported by U-Boot. Most of them are available
108at the kernel.org site, some are not provided by kernel.org.
109
110The default per-arch CROSS_COMPILE used by this tool is specified by
111the list below, CROSS_COMPILE. You may wish to update the list to
112use your own. Instead of modifying the list directly, you can give
113them via environments.
114
115
116Available options
117-----------------
118
119 -c, --color
120 Surround each portion of the log with escape sequences to display it
121 in color on the terminal.
122
Joe Hershbergerc6e043a2015-05-19 13:21:19 -0500123 -d, --defconfigs
124 Specify a file containing a list of defconfigs to move
125
Masahiro Yamadab6160812015-05-20 11:36:07 +0900126 -n, --dry-run
Masahiro Yamadab903c4e2016-05-19 15:51:58 +0900127 Perform a trial run that does not make any changes. It is useful to
Masahiro Yamadab6160812015-05-20 11:36:07 +0900128 see what is going to happen before one actually runs it.
129
130 -e, --exit-on-error
131 Exit immediately if Make exits with a non-zero status while processing
132 a defconfig file.
133
Masahiro Yamada83c17672016-05-19 15:52:08 +0900134 -s, --force-sync
135 Do "make savedefconfig" forcibly for all the defconfig files.
136 If not specified, "make savedefconfig" only occurs for cases
137 where at least one CONFIG was moved.
138
Joe Hershberger23475932015-05-19 13:21:20 -0500139 -H, --headers-only
140 Only cleanup the headers; skip the defconfig processing
141
Masahiro Yamadab6160812015-05-20 11:36:07 +0900142 -j, --jobs
143 Specify the number of threads to run simultaneously. If not specified,
144 the number of threads is the same as the number of CPU cores.
145
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500146 -r, --git-ref
147 Specify the git ref to clone for building the autoconf.mk. If unspecified
148 use the CWD. This is useful for when changes to the Kconfig affect the
149 default values and you want to capture the state of the defconfig from
150 before that change was in effect. If in doubt, specify a ref pre-Kconfig
151 changes (use HEAD if Kconfig changes are not committed). Worst case it will
152 take a bit longer to run, but will always do the right thing.
153
Joe Hershberger808b63f2015-05-19 13:21:24 -0500154 -v, --verbose
155 Show any build errors as boards are built
156
Masahiro Yamadab6160812015-05-20 11:36:07 +0900157To see the complete list of supported options, run
158
159 $ tools/moveconfig.py -h
160
161"""
162
Masahiro Yamada0f6beda2016-05-19 15:52:07 +0900163import filecmp
Masahiro Yamadab6160812015-05-20 11:36:07 +0900164import fnmatch
165import multiprocessing
166import optparse
167import os
168import re
169import shutil
170import subprocess
171import sys
172import tempfile
173import time
174
175SHOW_GNU_MAKE = 'scripts/show-gnu-make'
176SLEEP_TIME=0.03
177
178# Here is the list of cross-tools I use.
179# Most of them are available at kernel.org
180# (https://www.kernel.org/pub/tools/crosstool/files/bin/), except the followings:
181# arc: https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases
182# blackfin: http://sourceforge.net/projects/adi-toolchain/files/
Bin Meng3bb02f62015-09-25 01:22:39 -0700183# nds32: http://osdk.andestech.com/packages/nds32le-linux-glibc-v1.tgz
Masahiro Yamadab6160812015-05-20 11:36:07 +0900184# nios2: https://sourcery.mentor.com/GNUToolchain/subscription42545
185# sh: http://sourcery.mentor.com/public/gnu_toolchain/sh-linux-gnu
Bin Meng07a50f92016-02-21 21:18:02 -0800186#
187# openrisc kernel.org toolchain is out of date, download latest one from
188# http://opencores.org/or1k/OpenRISC_GNU_tool_chain#Prebuilt_versions
Masahiro Yamadab6160812015-05-20 11:36:07 +0900189CROSS_COMPILE = {
190 'arc': 'arc-linux-',
191 'aarch64': 'aarch64-linux-',
192 'arm': 'arm-unknown-linux-gnueabi-',
193 'avr32': 'avr32-linux-',
194 'blackfin': 'bfin-elf-',
195 'm68k': 'm68k-linux-',
196 'microblaze': 'microblaze-linux-',
197 'mips': 'mips-linux-',
198 'nds32': 'nds32le-linux-',
199 'nios2': 'nios2-linux-gnu-',
Bin Meng07a50f92016-02-21 21:18:02 -0800200 'openrisc': 'or1k-elf-',
Masahiro Yamadab6160812015-05-20 11:36:07 +0900201 'powerpc': 'powerpc-linux-',
202 'sh': 'sh-linux-gnu-',
203 'sparc': 'sparc-linux-',
204 'x86': 'i386-linux-'
205}
206
207STATE_IDLE = 0
208STATE_DEFCONFIG = 1
209STATE_AUTOCONF = 2
Joe Hershberger166edec2015-05-19 13:21:17 -0500210STATE_SAVEDEFCONFIG = 3
Masahiro Yamadab6160812015-05-20 11:36:07 +0900211
212ACTION_MOVE = 0
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900213ACTION_NO_ENTRY = 1
214ACTION_NO_CHANGE = 2
Masahiro Yamadab6160812015-05-20 11:36:07 +0900215
216COLOR_BLACK = '0;30'
217COLOR_RED = '0;31'
218COLOR_GREEN = '0;32'
219COLOR_BROWN = '0;33'
220COLOR_BLUE = '0;34'
221COLOR_PURPLE = '0;35'
222COLOR_CYAN = '0;36'
223COLOR_LIGHT_GRAY = '0;37'
224COLOR_DARK_GRAY = '1;30'
225COLOR_LIGHT_RED = '1;31'
226COLOR_LIGHT_GREEN = '1;32'
227COLOR_YELLOW = '1;33'
228COLOR_LIGHT_BLUE = '1;34'
229COLOR_LIGHT_PURPLE = '1;35'
230COLOR_LIGHT_CYAN = '1;36'
231COLOR_WHITE = '1;37'
232
233### helper functions ###
234def get_devnull():
235 """Get the file object of '/dev/null' device."""
236 try:
237 devnull = subprocess.DEVNULL # py3k
238 except AttributeError:
239 devnull = open(os.devnull, 'wb')
240 return devnull
241
242def check_top_directory():
243 """Exit if we are not at the top of source directory."""
244 for f in ('README', 'Licenses'):
245 if not os.path.exists(f):
246 sys.exit('Please run at the top of source directory.')
247
Masahiro Yamada990e6772016-05-19 15:51:54 +0900248def check_clean_directory():
249 """Exit if the source tree is not clean."""
250 for f in ('.config', 'include/config'):
251 if os.path.exists(f):
252 sys.exit("source tree is not clean, please run 'make mrproper'")
253
Masahiro Yamadab6160812015-05-20 11:36:07 +0900254def get_make_cmd():
255 """Get the command name of GNU Make.
256
257 U-Boot needs GNU Make for building, but the command name is not
258 necessarily "make". (for example, "gmake" on FreeBSD).
259 Returns the most appropriate command name on your system.
260 """
261 process = subprocess.Popen([SHOW_GNU_MAKE], stdout=subprocess.PIPE)
262 ret = process.communicate()
263 if process.returncode:
264 sys.exit('GNU Make not found')
265 return ret[0].rstrip()
266
267def color_text(color_enabled, color, string):
268 """Return colored string."""
269 if color_enabled:
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900270 # LF should not be surrounded by the escape sequence.
271 # Otherwise, additional whitespace or line-feed might be printed.
272 return '\n'.join([ '\033[' + color + 'm' + s + '\033[0m' if s else ''
273 for s in string.split('\n') ])
Masahiro Yamadab6160812015-05-20 11:36:07 +0900274 else:
275 return string
276
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900277def update_cross_compile(color_enabled):
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400278 """Update per-arch CROSS_COMPILE via environment variables
Masahiro Yamadab6160812015-05-20 11:36:07 +0900279
280 The default CROSS_COMPILE values are available
281 in the CROSS_COMPILE list above.
282
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400283 You can override them via environment variables
Masahiro Yamadab6160812015-05-20 11:36:07 +0900284 CROSS_COMPILE_{ARCH}.
285
286 For example, if you want to override toolchain prefixes
287 for ARM and PowerPC, you can do as follows in your shell:
288
289 export CROSS_COMPILE_ARM=...
290 export CROSS_COMPILE_POWERPC=...
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900291
292 Then, this function checks if specified compilers really exist in your
293 PATH environment.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900294 """
295 archs = []
296
297 for arch in os.listdir('arch'):
298 if os.path.exists(os.path.join('arch', arch, 'Makefile')):
299 archs.append(arch)
300
301 # arm64 is a special case
302 archs.append('aarch64')
303
304 for arch in archs:
305 env = 'CROSS_COMPILE_' + arch.upper()
306 cross_compile = os.environ.get(env)
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900307 if not cross_compile:
308 cross_compile = CROSS_COMPILE.get(arch, '')
309
310 for path in os.environ["PATH"].split(os.pathsep):
311 gcc_path = os.path.join(path, cross_compile + 'gcc')
312 if os.path.isfile(gcc_path) and os.access(gcc_path, os.X_OK):
313 break
314 else:
315 print >> sys.stderr, color_text(color_enabled, COLOR_YELLOW,
316 'warning: %sgcc: not found in PATH. %s architecture boards will be skipped'
317 % (cross_compile, arch))
318 cross_compile = None
319
320 CROSS_COMPILE[arch] = cross_compile
Masahiro Yamadab6160812015-05-20 11:36:07 +0900321
322def cleanup_one_header(header_path, patterns, dry_run):
323 """Clean regex-matched lines away from a file.
324
325 Arguments:
326 header_path: path to the cleaned file.
327 patterns: list of regex patterns. Any lines matching to these
328 patterns are deleted.
329 dry_run: make no changes, but still display log.
330 """
331 with open(header_path) as f:
332 lines = f.readlines()
333
334 matched = []
335 for i, line in enumerate(lines):
336 for pattern in patterns:
337 m = pattern.search(line)
338 if m:
339 print '%s: %s: %s' % (header_path, i + 1, line),
340 matched.append(i)
341 break
342
343 if dry_run or not matched:
344 return
345
346 with open(header_path, 'w') as f:
347 for i, line in enumerate(lines):
348 if not i in matched:
349 f.write(line)
350
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900351def cleanup_headers(configs, dry_run):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900352 """Delete config defines from board headers.
353
354 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900355 configs: A list of CONFIGs to remove.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900356 dry_run: make no changes, but still display log.
357 """
358 while True:
359 choice = raw_input('Clean up headers? [y/n]: ').lower()
360 print choice
361 if choice == 'y' or choice == 'n':
362 break
363
364 if choice == 'n':
365 return
366
367 patterns = []
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900368 for config in configs:
Masahiro Yamadab6160812015-05-20 11:36:07 +0900369 patterns.append(re.compile(r'#\s*define\s+%s\W' % config))
370 patterns.append(re.compile(r'#\s*undef\s+%s\W' % config))
371
Joe Hershbergerb78ad422015-05-19 13:21:21 -0500372 for dir in 'include', 'arch', 'board':
373 for (dirpath, dirnames, filenames) in os.walk(dir):
374 for filename in filenames:
375 if not fnmatch.fnmatch(filename, '*~'):
376 cleanup_one_header(os.path.join(dirpath, filename),
377 patterns, dry_run)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900378
379### classes ###
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900380class Progress:
381
382 """Progress Indicator"""
383
384 def __init__(self, total):
385 """Create a new progress indicator.
386
387 Arguments:
388 total: A number of defconfig files to process.
389 """
390 self.current = 0
391 self.total = total
392
393 def inc(self):
394 """Increment the number of processed defconfig files."""
395
396 self.current += 1
397
398 def show(self):
399 """Display the progress."""
400 print ' %d defconfigs out of %d\r' % (self.current, self.total),
401 sys.stdout.flush()
402
Masahiro Yamadab6160812015-05-20 11:36:07 +0900403class KconfigParser:
404
405 """A parser of .config and include/autoconf.mk."""
406
407 re_arch = re.compile(r'CONFIG_SYS_ARCH="(.*)"')
408 re_cpu = re.compile(r'CONFIG_SYS_CPU="(.*)"')
409
Masahiro Yamada69e2bbc2016-05-19 15:52:01 +0900410 def __init__(self, configs, options, build_dir):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900411 """Create a new parser.
412
413 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900414 configs: A list of CONFIGs to move.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900415 options: option flags.
416 build_dir: Build directory.
417 """
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900418 self.configs = configs
Masahiro Yamadab6160812015-05-20 11:36:07 +0900419 self.options = options
Masahiro Yamada5393b612016-05-19 15:52:00 +0900420 self.dotconfig = os.path.join(build_dir, '.config')
421 self.autoconf = os.path.join(build_dir, 'include', 'autoconf.mk')
422 self.config_autoconf = os.path.join(build_dir, 'include', 'config',
423 'auto.conf')
Masahiro Yamada07f98522016-05-19 15:52:06 +0900424 self.defconfig = os.path.join(build_dir, 'defconfig')
Masahiro Yamadab6160812015-05-20 11:36:07 +0900425
426 def get_cross_compile(self):
427 """Parse .config file and return CROSS_COMPILE.
428
429 Returns:
430 A string storing the compiler prefix for the architecture.
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900431 Return a NULL string for architectures that do not require
432 compiler prefix (Sandbox and native build is the case).
433 Return None if the specified compiler is missing in your PATH.
434 Caller should distinguish '' and None.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900435 """
436 arch = ''
437 cpu = ''
Masahiro Yamada5393b612016-05-19 15:52:00 +0900438 for line in open(self.dotconfig):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900439 m = self.re_arch.match(line)
440 if m:
441 arch = m.group(1)
442 continue
443 m = self.re_cpu.match(line)
444 if m:
445 cpu = m.group(1)
446
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900447 if not arch:
448 return None
Masahiro Yamadab6160812015-05-20 11:36:07 +0900449
450 # fix-up for aarch64
451 if arch == 'arm' and cpu == 'armv8':
452 arch = 'aarch64'
453
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900454 return CROSS_COMPILE.get(arch, None)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900455
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900456 def parse_one_config(self, config, dotconfig_lines, autoconf_lines):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900457 """Parse .config, defconfig, include/autoconf.mk for one config.
458
459 This function looks for the config options in the lines from
460 defconfig, .config, and include/autoconf.mk in order to decide
461 which action should be taken for this defconfig.
462
463 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900464 config: CONFIG name to parse.
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900465 dotconfig_lines: lines from the .config file.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900466 autoconf_lines: lines from the include/autoconf.mk file.
467
468 Returns:
469 A tupple of the action for this defconfig and the line
470 matched for the config.
471 """
Masahiro Yamadab6160812015-05-20 11:36:07 +0900472 not_set = '# %s is not set' % config
473
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900474 for line in dotconfig_lines:
Masahiro Yamadab6160812015-05-20 11:36:07 +0900475 line = line.rstrip()
476 if line.startswith(config + '=') or line == not_set:
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900477 old_val = line
478 break
Masahiro Yamadab6160812015-05-20 11:36:07 +0900479 else:
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900480 return (ACTION_NO_ENTRY, config)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900481
482 for line in autoconf_lines:
483 line = line.rstrip()
484 if line.startswith(config + '='):
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900485 new_val = line
Masahiro Yamadab6160812015-05-20 11:36:07 +0900486 break
Masahiro Yamadab6160812015-05-20 11:36:07 +0900487 else:
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900488 new_val = not_set
489
490 if old_val == new_val:
491 return (ACTION_NO_CHANGE, new_val)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900492
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900493 # If this CONFIG is neither bool nor trisate
494 if old_val[-2:] != '=y' and old_val[-2:] != '=m' and old_val != not_set:
495 # tools/scripts/define2mk.sed changes '1' to 'y'.
496 # This is a problem if the CONFIG is int type.
497 # Check the type in Kconfig and handle it correctly.
498 if new_val[-2:] == '=y':
499 new_val = new_val[:-1] + '1'
500
501 return (ACTION_MOVE, new_val)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900502
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900503 def update_dotconfig(self):
Masahiro Yamada7c0d9d22016-05-19 15:51:50 +0900504 """Parse files for the config options and update the .config.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900505
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900506 This function parses the generated .config and include/autoconf.mk
507 searching the target options.
Masahiro Yamada7c0d9d22016-05-19 15:51:50 +0900508 Move the config option(s) to the .config as needed.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900509
510 Arguments:
511 defconfig: defconfig name.
Masahiro Yamada69e2bbc2016-05-19 15:52:01 +0900512
513 Returns:
Masahiro Yamada263d1372016-05-19 15:52:04 +0900514 Return a tuple of (updated flag, log string).
515 The "updated flag" is True if the .config was updated, False
516 otherwise. The "log string" shows what happend to the .config.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900517 """
518
Masahiro Yamadab6160812015-05-20 11:36:07 +0900519 results = []
Masahiro Yamada263d1372016-05-19 15:52:04 +0900520 updated = False
Masahiro Yamadab6160812015-05-20 11:36:07 +0900521
Masahiro Yamada5393b612016-05-19 15:52:00 +0900522 with open(self.dotconfig) as f:
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900523 dotconfig_lines = f.readlines()
Masahiro Yamadab6160812015-05-20 11:36:07 +0900524
Masahiro Yamada5393b612016-05-19 15:52:00 +0900525 with open(self.autoconf) as f:
Masahiro Yamadab6160812015-05-20 11:36:07 +0900526 autoconf_lines = f.readlines()
527
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900528 for config in self.configs:
529 result = self.parse_one_config(config, dotconfig_lines,
Joe Hershberger166edec2015-05-19 13:21:17 -0500530 autoconf_lines)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900531 results.append(result)
532
533 log = ''
534
535 for (action, value) in results:
536 if action == ACTION_MOVE:
537 actlog = "Move '%s'" % value
538 log_color = COLOR_LIGHT_GREEN
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900539 elif action == ACTION_NO_ENTRY:
540 actlog = "%s is not defined in Kconfig. Do nothing." % value
Masahiro Yamadab6160812015-05-20 11:36:07 +0900541 log_color = COLOR_LIGHT_BLUE
Masahiro Yamada5643d6e2016-05-19 15:51:56 +0900542 elif action == ACTION_NO_CHANGE:
543 actlog = "'%s' is the same as the define in Kconfig. Do nothing." \
544 % value
Masahiro Yamadab6160812015-05-20 11:36:07 +0900545 log_color = COLOR_LIGHT_PURPLE
Masahiro Yamadab6160812015-05-20 11:36:07 +0900546 else:
547 sys.exit("Internal Error. This should not happen.")
548
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900549 log += color_text(self.options.color, log_color, actlog) + '\n'
Masahiro Yamadab6160812015-05-20 11:36:07 +0900550
Masahiro Yamada5393b612016-05-19 15:52:00 +0900551 with open(self.dotconfig, 'a') as f:
Masahiro Yamada953d93b2016-05-19 15:51:49 +0900552 for (action, value) in results:
553 if action == ACTION_MOVE:
554 f.write(value + '\n')
Masahiro Yamada263d1372016-05-19 15:52:04 +0900555 updated = True
Masahiro Yamadab6160812015-05-20 11:36:07 +0900556
Masahiro Yamada07f98522016-05-19 15:52:06 +0900557 self.results = results
Masahiro Yamada5393b612016-05-19 15:52:00 +0900558 os.remove(self.config_autoconf)
559 os.remove(self.autoconf)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900560
Masahiro Yamada263d1372016-05-19 15:52:04 +0900561 return (updated, log)
Masahiro Yamada69e2bbc2016-05-19 15:52:01 +0900562
Masahiro Yamada07f98522016-05-19 15:52:06 +0900563 def check_defconfig(self):
564 """Check the defconfig after savedefconfig
565
566 Returns:
567 Return additional log if moved CONFIGs were removed again by
568 'make savedefconfig'.
569 """
570
571 log = ''
572
573 with open(self.defconfig) as f:
574 defconfig_lines = f.readlines()
575
576 for (action, value) in self.results:
577 if action != ACTION_MOVE:
578 continue
579 if not value + '\n' in defconfig_lines:
580 log += color_text(self.options.color, COLOR_YELLOW,
581 "'%s' was removed by savedefconfig.\n" %
582 value)
583
584 return log
585
Masahiro Yamadab6160812015-05-20 11:36:07 +0900586class Slot:
587
588 """A slot to store a subprocess.
589
590 Each instance of this class handles one subprocess.
591 This class is useful to control multiple threads
592 for faster processing.
593 """
594
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500595 def __init__(self, configs, options, progress, devnull, make_cmd, reference_src_dir):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900596 """Create a new process slot.
597
598 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900599 configs: A list of CONFIGs to move.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900600 options: option flags.
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900601 progress: A progress indicator.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900602 devnull: A file object of '/dev/null'.
603 make_cmd: command name of GNU Make.
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500604 reference_src_dir: Determine the true starting config state from this
605 source tree.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900606 """
607 self.options = options
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900608 self.progress = progress
Masahiro Yamadab6160812015-05-20 11:36:07 +0900609 self.build_dir = tempfile.mkdtemp()
610 self.devnull = devnull
611 self.make_cmd = (make_cmd, 'O=' + self.build_dir)
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500612 self.reference_src_dir = reference_src_dir
Masahiro Yamada69e2bbc2016-05-19 15:52:01 +0900613 self.parser = KconfigParser(configs, options, self.build_dir)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900614 self.state = STATE_IDLE
615 self.failed_boards = []
616
617 def __del__(self):
618 """Delete the working directory
619
620 This function makes sure the temporary directory is cleaned away
621 even if Python suddenly dies due to error. It should be done in here
Joe Hershberger640de872016-06-10 14:53:29 -0500622 because it is guaranteed the destructor is always invoked when the
Masahiro Yamadab6160812015-05-20 11:36:07 +0900623 instance of the class gets unreferenced.
624
625 If the subprocess is still running, wait until it finishes.
626 """
627 if self.state != STATE_IDLE:
628 while self.ps.poll() == None:
629 pass
630 shutil.rmtree(self.build_dir)
631
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900632 def add(self, defconfig):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900633 """Assign a new subprocess for defconfig and add it to the slot.
634
635 If the slot is vacant, create a new subprocess for processing the
636 given defconfig and add it to the slot. Just returns False if
637 the slot is occupied (i.e. the current subprocess is still running).
638
639 Arguments:
640 defconfig: defconfig name.
641
642 Returns:
643 Return True on success or False on failure
644 """
645 if self.state != STATE_IDLE:
646 return False
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900647
Masahiro Yamadab6160812015-05-20 11:36:07 +0900648 self.defconfig = defconfig
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900649 self.log = ''
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500650 self.use_git_ref = True if self.options.git_ref else False
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900651 self.do_defconfig()
Masahiro Yamadab6160812015-05-20 11:36:07 +0900652 return True
653
654 def poll(self):
655 """Check the status of the subprocess and handle it as needed.
656
657 Returns True if the slot is vacant (i.e. in idle state).
658 If the configuration is successfully finished, assign a new
659 subprocess to build include/autoconf.mk.
660 If include/autoconf.mk is generated, invoke the parser to
Masahiro Yamada263d1372016-05-19 15:52:04 +0900661 parse the .config and the include/autoconf.mk, moving
662 config options to the .config as needed.
663 If the .config was updated, run "make savedefconfig" to sync
664 it, update the original defconfig, and then set the slot back
665 to the idle state.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900666
667 Returns:
668 Return True if the subprocess is terminated, False otherwise
669 """
670 if self.state == STATE_IDLE:
671 return True
672
673 if self.ps.poll() == None:
674 return False
675
676 if self.ps.poll() != 0:
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900677 self.handle_error()
678 elif self.state == STATE_DEFCONFIG:
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500679 if self.options.git_ref and not self.use_git_ref:
680 self.do_savedefconfig()
681 else:
682 self.do_autoconf()
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900683 elif self.state == STATE_AUTOCONF:
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500684 if self.use_git_ref:
685 self.use_git_ref = False
686 self.do_defconfig()
687 else:
688 self.do_savedefconfig()
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900689 elif self.state == STATE_SAVEDEFCONFIG:
690 self.update_defconfig()
691 else:
692 sys.exit("Internal Error. This should not happen.")
Masahiro Yamadab6160812015-05-20 11:36:07 +0900693
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900694 return True if self.state == STATE_IDLE else False
Joe Hershberger166edec2015-05-19 13:21:17 -0500695
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900696 def handle_error(self):
697 """Handle error cases."""
Masahiro Yamada83c17672016-05-19 15:52:08 +0900698
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900699 self.log += color_text(self.options.color, COLOR_LIGHT_RED,
700 "Failed to process.\n")
701 if self.options.verbose:
702 self.log += color_text(self.options.color, COLOR_LIGHT_CYAN,
703 self.ps.stderr.read())
704 self.finish(False)
Joe Hershberger166edec2015-05-19 13:21:17 -0500705
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900706 def do_defconfig(self):
707 """Run 'make <board>_defconfig' to create the .config file."""
Masahiro Yamada0f6beda2016-05-19 15:52:07 +0900708
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900709 cmd = list(self.make_cmd)
710 cmd.append(self.defconfig)
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500711 if self.use_git_ref:
712 cmd.append('-C')
713 cmd.append(self.reference_src_dir)
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900714 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
715 stderr=subprocess.PIPE)
716 self.state = STATE_DEFCONFIG
Masahiro Yamada0f6beda2016-05-19 15:52:07 +0900717
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900718 def do_autoconf(self):
719 """Run 'make include/config/auto.conf'."""
Masahiro Yamadab6160812015-05-20 11:36:07 +0900720
Joe Hershberger11b02702015-05-19 13:21:23 -0500721 self.cross_compile = self.parser.get_cross_compile()
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900722 if self.cross_compile is None:
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900723 self.log += color_text(self.options.color, COLOR_YELLOW,
724 "Compiler is missing. Do nothing.\n")
Masahiro Yamada274a5ee2016-05-19 15:52:03 +0900725 self.finish(False)
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900726 return
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +0900727
Masahiro Yamadab6160812015-05-20 11:36:07 +0900728 cmd = list(self.make_cmd)
Joe Hershberger11b02702015-05-19 13:21:23 -0500729 if self.cross_compile:
730 cmd.append('CROSS_COMPILE=%s' % self.cross_compile)
Joe Hershberger765442b2015-05-19 13:21:18 -0500731 cmd.append('KCONFIG_IGNORE_DUPLICATES=1')
Masahiro Yamadab6160812015-05-20 11:36:07 +0900732 cmd.append('include/config/auto.conf')
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500733 if self.use_git_ref:
734 cmd.append('-C')
735 cmd.append(self.reference_src_dir)
Joe Hershberger11b02702015-05-19 13:21:23 -0500736 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
Joe Hershberger11b02702015-05-19 13:21:23 -0500737 stderr=subprocess.PIPE)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900738 self.state = STATE_AUTOCONF
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900739
740 def do_savedefconfig(self):
741 """Update the .config and run 'make savedefconfig'."""
742
743 (updated, log) = self.parser.update_dotconfig()
744 self.log += log
745
746 if not self.options.force_sync and not updated:
747 self.finish(True)
748 return
749 if updated:
750 self.log += color_text(self.options.color, COLOR_LIGHT_GREEN,
751 "Syncing by savedefconfig...\n")
752 else:
753 self.log += "Syncing by savedefconfig (forced by option)...\n"
754
755 cmd = list(self.make_cmd)
756 cmd.append('savedefconfig')
757 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
758 stderr=subprocess.PIPE)
759 self.state = STATE_SAVEDEFCONFIG
760
761 def update_defconfig(self):
762 """Update the input defconfig and go back to the idle state."""
763
764 self.log += self.parser.check_defconfig()
765 orig_defconfig = os.path.join('configs', self.defconfig)
766 new_defconfig = os.path.join(self.build_dir, 'defconfig')
767 updated = not filecmp.cmp(orig_defconfig, new_defconfig)
768
769 if updated:
Joe Hershberger93f1c2d2016-06-10 14:53:30 -0500770 self.log += color_text(self.options.color, COLOR_LIGHT_BLUE,
Masahiro Yamadacb256cb2016-06-08 11:47:37 +0900771 "defconfig was updated.\n")
772
773 if not self.options.dry_run and updated:
774 shutil.move(new_defconfig, orig_defconfig)
775 self.finish(True)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900776
Masahiro Yamada274a5ee2016-05-19 15:52:03 +0900777 def finish(self, success):
778 """Display log along with progress and go to the idle state.
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900779
780 Arguments:
Masahiro Yamada274a5ee2016-05-19 15:52:03 +0900781 success: Should be True when the defconfig was processed
782 successfully, or False when it fails.
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900783 """
784 # output at least 30 characters to hide the "* defconfigs out of *".
785 log = self.defconfig.ljust(30) + '\n'
786
787 log += '\n'.join([ ' ' + s for s in self.log.split('\n') ])
788 # Some threads are running in parallel.
789 # Print log atomically to not mix up logs from different threads.
Masahiro Yamada274a5ee2016-05-19 15:52:03 +0900790 print >> (sys.stdout if success else sys.stderr), log
791
792 if not success:
793 if self.options.exit_on_error:
794 sys.exit("Exit on error.")
795 # If --exit-on-error flag is not set, skip this board and continue.
796 # Record the failed board.
797 self.failed_boards.append(self.defconfig)
798
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900799 self.progress.inc()
800 self.progress.show()
Masahiro Yamada274a5ee2016-05-19 15:52:03 +0900801 self.state = STATE_IDLE
Masahiro Yamada465b7c02016-05-19 15:52:02 +0900802
Masahiro Yamadab6160812015-05-20 11:36:07 +0900803 def get_failed_boards(self):
804 """Returns a list of failed boards (defconfigs) in this slot.
805 """
806 return self.failed_boards
807
808class Slots:
809
810 """Controller of the array of subprocess slots."""
811
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500812 def __init__(self, configs, options, progress, reference_src_dir):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900813 """Create a new slots controller.
814
815 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900816 configs: A list of CONFIGs to move.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900817 options: option flags.
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900818 progress: A progress indicator.
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500819 reference_src_dir: Determine the true starting config state from this
820 source tree.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900821 """
822 self.options = options
823 self.slots = []
824 devnull = get_devnull()
825 make_cmd = get_make_cmd()
826 for i in range(options.jobs):
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900827 self.slots.append(Slot(configs, options, progress, devnull,
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500828 make_cmd, reference_src_dir))
Masahiro Yamadab6160812015-05-20 11:36:07 +0900829
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900830 def add(self, defconfig):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900831 """Add a new subprocess if a vacant slot is found.
832
833 Arguments:
834 defconfig: defconfig name to be put into.
835
836 Returns:
837 Return True on success or False on failure
838 """
839 for slot in self.slots:
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900840 if slot.add(defconfig):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900841 return True
842 return False
843
844 def available(self):
845 """Check if there is a vacant slot.
846
847 Returns:
848 Return True if at lease one vacant slot is found, False otherwise.
849 """
850 for slot in self.slots:
851 if slot.poll():
852 return True
853 return False
854
855 def empty(self):
856 """Check if all slots are vacant.
857
858 Returns:
859 Return True if all the slots are vacant, False otherwise.
860 """
861 ret = True
862 for slot in self.slots:
863 if not slot.poll():
864 ret = False
865 return ret
866
867 def show_failed_boards(self):
868 """Display all of the failed boards (defconfigs)."""
869 failed_boards = []
870
871 for slot in self.slots:
872 failed_boards += slot.get_failed_boards()
873
874 if len(failed_boards) > 0:
875 msg = [ "The following boards were not processed due to error:" ]
876 msg += failed_boards
877 for line in msg:
878 print >> sys.stderr, color_text(self.options.color,
879 COLOR_LIGHT_RED, line)
880
Joe Hershbergerdade12e2015-05-19 13:21:22 -0500881 with open('moveconfig.failed', 'w') as f:
882 for board in failed_boards:
883 f.write(board + '\n')
884
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500885class WorkDir:
886 def __init__(self):
887 """Create a new working directory."""
888 self.work_dir = tempfile.mkdtemp()
889
890 def __del__(self):
891 """Delete the working directory
892
893 This function makes sure the temporary directory is cleaned away
894 even if Python suddenly dies due to error. It should be done in here
895 because it is guaranteed the destructor is always invoked when the
896 instance of the class gets unreferenced.
897 """
898 shutil.rmtree(self.work_dir)
899
900 def get(self):
901 return self.work_dir
902
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900903def move_config(configs, options):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900904 """Move config options to defconfig files.
905
906 Arguments:
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900907 configs: A list of CONFIGs to move.
Masahiro Yamadab6160812015-05-20 11:36:07 +0900908 options: option flags
909 """
Masahiro Yamadab80a6672016-05-19 15:51:57 +0900910 if len(configs) == 0:
Masahiro Yamada9566abd2016-05-19 15:52:09 +0900911 if options.force_sync:
912 print 'No CONFIG is specified. You are probably syncing defconfigs.',
913 else:
914 print 'Neither CONFIG nor --force-sync is specified. Nothing will happen.',
915 else:
916 print 'Move ' + ', '.join(configs),
917 print '(jobs: %d)\n' % options.jobs
Masahiro Yamadab6160812015-05-20 11:36:07 +0900918
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500919 reference_src_dir = ''
920
921 if options.git_ref:
922 work_dir = WorkDir()
923 reference_src_dir = work_dir.get()
924 print "Cloning git repo to a separate work directory..."
925 subprocess.check_output(['git', 'clone', os.getcwd(), '.'],
926 cwd=reference_src_dir)
927 print "Checkout '%s' to build the original autoconf.mk." % \
928 subprocess.check_output(['git', 'rev-parse', '--short',
929 options.git_ref]).strip()
930 subprocess.check_output(['git', 'checkout', options.git_ref],
931 stderr=subprocess.STDOUT,
932 cwd=reference_src_dir)
933
Joe Hershbergerc6e043a2015-05-19 13:21:19 -0500934 if options.defconfigs:
935 defconfigs = [line.strip() for line in open(options.defconfigs)]
936 for i, defconfig in enumerate(defconfigs):
937 if not defconfig.endswith('_defconfig'):
938 defconfigs[i] = defconfig + '_defconfig'
939 if not os.path.exists(os.path.join('configs', defconfigs[i])):
940 sys.exit('%s - defconfig does not exist. Stopping.' %
941 defconfigs[i])
942 else:
943 # All the defconfig files to be processed
944 defconfigs = []
945 for (dirpath, dirnames, filenames) in os.walk('configs'):
946 dirpath = dirpath[len('configs') + 1:]
947 for filename in fnmatch.filter(filenames, '*_defconfig'):
948 defconfigs.append(os.path.join(dirpath, filename))
Masahiro Yamadab6160812015-05-20 11:36:07 +0900949
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900950 progress = Progress(len(defconfigs))
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500951 slots = Slots(configs, options, progress, reference_src_dir)
Masahiro Yamadab6160812015-05-20 11:36:07 +0900952
953 # Main loop to process defconfig files:
954 # Add a new subprocess into a vacant slot.
955 # Sleep if there is no available slot.
Masahiro Yamadacefaa582016-05-19 15:51:55 +0900956 for defconfig in defconfigs:
957 while not slots.add(defconfig):
Masahiro Yamadab6160812015-05-20 11:36:07 +0900958 while not slots.available():
959 # No available slot: sleep for a while
960 time.sleep(SLEEP_TIME)
961
962 # wait until all the subprocesses finish
963 while not slots.empty():
964 time.sleep(SLEEP_TIME)
965
Joe Hershberger3fa1ab72015-05-19 13:21:25 -0500966 print ''
Masahiro Yamadab6160812015-05-20 11:36:07 +0900967 slots.show_failed_boards()
968
Masahiro Yamadab6160812015-05-20 11:36:07 +0900969def main():
970 try:
971 cpu_count = multiprocessing.cpu_count()
972 except NotImplementedError:
973 cpu_count = 1
974
975 parser = optparse.OptionParser()
976 # Add options here
977 parser.add_option('-c', '--color', action='store_true', default=False,
978 help='display the log in color')
Joe Hershbergerc6e043a2015-05-19 13:21:19 -0500979 parser.add_option('-d', '--defconfigs', type='string',
980 help='a file containing a list of defconfigs to move')
Masahiro Yamadab6160812015-05-20 11:36:07 +0900981 parser.add_option('-n', '--dry-run', action='store_true', default=False,
982 help='perform a trial run (show log with no changes)')
983 parser.add_option('-e', '--exit-on-error', action='store_true',
984 default=False,
985 help='exit immediately on any error')
Masahiro Yamada83c17672016-05-19 15:52:08 +0900986 parser.add_option('-s', '--force-sync', action='store_true', default=False,
987 help='force sync by savedefconfig')
Joe Hershberger23475932015-05-19 13:21:20 -0500988 parser.add_option('-H', '--headers-only', dest='cleanup_headers_only',
989 action='store_true', default=False,
990 help='only cleanup the headers')
Masahiro Yamadab6160812015-05-20 11:36:07 +0900991 parser.add_option('-j', '--jobs', type='int', default=cpu_count,
992 help='the number of jobs to run simultaneously')
Joe Hershbergerb1a570f2016-06-10 14:53:32 -0500993 parser.add_option('-r', '--git-ref', type='string',
994 help='the git ref to clone for building the autoconf.mk')
Joe Hershberger808b63f2015-05-19 13:21:24 -0500995 parser.add_option('-v', '--verbose', action='store_true', default=False,
996 help='show any build errors as boards are built')
Masahiro Yamadab903c4e2016-05-19 15:51:58 +0900997 parser.usage += ' CONFIG ...'
Masahiro Yamadab6160812015-05-20 11:36:07 +0900998
Masahiro Yamadab903c4e2016-05-19 15:51:58 +0900999 (options, configs) = parser.parse_args()
Masahiro Yamadab6160812015-05-20 11:36:07 +09001000
Masahiro Yamada9566abd2016-05-19 15:52:09 +09001001 if len(configs) == 0 and not options.force_sync:
Masahiro Yamadab6160812015-05-20 11:36:07 +09001002 parser.print_usage()
1003 sys.exit(1)
1004
Masahiro Yamadab903c4e2016-05-19 15:51:58 +09001005 # prefix the option name with CONFIG_ if missing
1006 configs = [ config if config.startswith('CONFIG_') else 'CONFIG_' + config
1007 for config in configs ]
Masahiro Yamadab6160812015-05-20 11:36:07 +09001008
Joe Hershberger23475932015-05-19 13:21:20 -05001009 check_top_directory()
1010
Masahiro Yamada990e6772016-05-19 15:51:54 +09001011 check_clean_directory()
1012
Masahiro Yamadac4d76eb2016-05-19 15:51:53 +09001013 update_cross_compile(options.color)
Masahiro Yamada06f76e92016-05-19 15:51:52 +09001014
Joe Hershberger23475932015-05-19 13:21:20 -05001015 if not options.cleanup_headers_only:
Masahiro Yamadab80a6672016-05-19 15:51:57 +09001016 move_config(configs, options)
Joe Hershberger23475932015-05-19 13:21:20 -05001017
Masahiro Yamada9566abd2016-05-19 15:52:09 +09001018 if configs:
1019 cleanup_headers(configs, options.dry_run)
Masahiro Yamadab6160812015-05-20 11:36:07 +09001020
1021if __name__ == '__main__':
1022 main()