diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-07-30 14:08:22 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-30 14:42:02 -0400 |
commit | 73f30b9b8097b1a25f48fbe035f1dee3dac89317 (patch) | |
tree | df5f7803b2532cf330065b624d5ba611545aedc7 /tools | |
parent | bb6da87d7eba1bbd51c98a4912ee4e099d79a639 (diff) | |
download | u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.zip u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.tar.gz u-boot-imx-73f30b9b8097b1a25f48fbe035f1dee3dac89317.tar.bz2 |
buildman: adjust for Kconfig
Use "make <board>_defconfig" instead of "make <board>_config".
Invoke tools/genboardscfg.py to generate boards.cfg when it is missing.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/board.py | 2 | ||||
-rw-r--r-- | tools/buildman/builder.py | 6 | ||||
-rw-r--r-- | tools/buildman/control.py | 10 |
3 files changed, 14 insertions, 4 deletions
diff --git a/tools/buildman/board.py b/tools/buildman/board.py index 5172a47..7bcc932 100644 --- a/tools/buildman/board.py +++ b/tools/buildman/board.py @@ -17,7 +17,7 @@ class Board: soc: Name of SOC, or '' if none (e.g. mx31) vendor: Name of vendor (e.g. armltd) board_name: Name of board (e.g. integrator) - target: Target name (use make <target>_config to configure) + target: Target name (use make <target>_defconfig to configure) options: board-specific options (e.g. integratorcp:CM1136) """ self.target = target diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index 7de8125..48408ff 100644 --- a/tools/buildman/builder.py +++ b/tools/buildman/builder.py @@ -199,7 +199,7 @@ class BuilderThread(threading.Thread): commit_upto: Commit number to build (0...n-1) brd: Board object to build work_dir: Directory to which the source will be checked out - do_config: True to run a make <board>_config on the source + do_config: True to run a make <board>_defconfig on the source force_build: Force a build even if one was previously done force_build_failures: Force a bulid if the previous result showed failure @@ -266,7 +266,7 @@ class BuilderThread(threading.Thread): args.append('-s') if self.builder.num_jobs is not None: args.extend(['-j', str(self.builder.num_jobs)]) - config_args = ['%s_config' % brd.target] + config_args = ['%s_defconfig' % brd.target] config_out = '' args.extend(self.builder.toolchains.GetMakeArguments(brd)) @@ -419,7 +419,7 @@ class BuilderThread(threading.Thread): work_dir = self.builder.GetThreadDir(self.thread_num) self.toolchain = None if job.commits: - # Run 'make board_config' on the first commit + # Run 'make board_defconfig' on the first commit do_config = True commit_upto = 0 force_build = False diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 267b7d9..75b6498 100644 --- a/tools/buildman/control.py +++ b/tools/buildman/control.py @@ -15,6 +15,7 @@ import patchstream import terminal import toolchain import command +import subprocess def GetPlural(count): """Returns a plural 's' if count is not 1""" @@ -109,6 +110,15 @@ def DoBuildman(options, args): sys.exit(1) # Work out what subset of the boards we are building + board_file = os.path.join(options.git, 'boards.cfg') + if not os.path.exists(board_file): + print 'Could not find %s' % board_file + status = subprocess.call([os.path.join(options.git, + 'tools/genboardscfg.py')]) + if status != 0: + print >> sys.stderr, "Failed to generate boards.cfg" + sys.exit(1) + boards = board.Boards() boards.ReadBoards(os.path.join(options.git, 'boards.cfg')) why_selected = boards.SelectBoards(args) |