2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2014-09-06 01:00:10 +00:00
|
|
|
# Copyright (c) 2014 Google, Inc
|
|
|
|
#
|
|
|
|
|
2023-07-19 23:49:02 +00:00
|
|
|
"""Handles parsing of buildman arguments
|
|
|
|
|
|
|
|
This creates the argument parser and uses it to parse the arguments passed in
|
|
|
|
"""
|
|
|
|
|
2023-07-19 23:49:04 +00:00
|
|
|
import argparse
|
2023-02-24 01:18:10 +00:00
|
|
|
import os
|
|
|
|
import pathlib
|
|
|
|
|
|
|
|
BUILDMAN_DIR = pathlib.Path(__file__).parent
|
|
|
|
HAS_TESTS = os.path.exists(BUILDMAN_DIR / "test.py")
|
2014-09-06 01:00:10 +00:00
|
|
|
|
2023-07-19 23:49:07 +00:00
|
|
|
def add_upto_m(parser):
|
|
|
|
"""Add arguments up to 'M'
|
2023-07-19 23:49:04 +00:00
|
|
|
|
2023-07-19 23:49:07 +00:00
|
|
|
Args:
|
|
|
|
parser (ArgumentParser): Parse to add to
|
2023-07-19 23:49:04 +00:00
|
|
|
|
2023-07-19 23:49:07 +00:00
|
|
|
This is split out to avoid having too many statements in one function
|
|
|
|
"""
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-a', '--adjust-cfg', type=str, action='append',
|
2022-01-22 12:07:33 +00:00
|
|
|
help='Adjust the Kconfig settings in .config before building')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-A', '--print-prefix', action='store_true',
|
2019-12-05 22:59:14 +00:00
|
|
|
help='Print the tool-chain prefix for a board (CROSS_COMPILE=)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-b', '--branch', type=str,
|
2015-02-06 05:06:15 +00:00
|
|
|
help='Branch name to build, or range of commits to build')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-B', '--bloat', dest='show_bloat',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
|
|
|
help='Show changes in function code size for each board')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--boards', type=str, action='append',
|
2018-06-12 05:26:46 +00:00
|
|
|
help='List of board names to build separated by comma')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-c', '--count', dest='count', type=int,
|
2014-09-06 01:00:10 +00:00
|
|
|
default=-1, help='Run build on the top n commits')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-C', '--force-reconfig', dest='force_reconfig',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
|
|
|
help='Reconfigure for every commit (disable incremental build)')
|
2023-07-19 23:49:29 +00:00
|
|
|
parser.add_argument('--config-only', action='store_true',
|
|
|
|
default=False,
|
|
|
|
help="Don't build, just configure each commit")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-d', '--detail', dest='show_detail',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
2020-03-18 15:42:43 +00:00
|
|
|
help='Show detailed size delta for each board in the -S summary')
|
2023-07-19 23:49:29 +00:00
|
|
|
parser.add_argument('-D', '--debug', action='store_true',
|
2022-01-22 12:07:29 +00:00
|
|
|
help='Enabling debugging (provides a full traceback on error)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-e', '--show_errors', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show errors and warnings')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-E', '--warnings-as-errors', action='store_true',
|
2018-01-26 15:31:05 +00:00
|
|
|
default=False, help='Treat all compiler warnings as errors')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-f', '--force-build', dest='force_build',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
|
|
|
help='Force build of boards even if already built')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-F', '--force-build-failures', dest='force_build_failures',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
|
|
|
help='Force build of previously-failed build')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--fetch-arch', type=str,
|
2014-12-02 00:34:06 +00:00
|
|
|
help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)."
|
|
|
|
' You can also fetch several toolchains separate by comma, or'
|
|
|
|
" 'all' to download all")
|
2023-07-19 23:49:30 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--full-check', action='store_true',
|
|
|
|
help='Check maintainer entries and TARGET configs')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-g', '--git', type=str,
|
2014-09-06 01:00:10 +00:00
|
|
|
help='Git repo containing branch to build', default='.')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-G', '--config-file', type=str,
|
2014-09-06 01:00:10 +00:00
|
|
|
help='Path to buildman config file', default='')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-H', '--full-help', action='store_true', dest='full_help',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Display the README file')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-i', '--in-tree', dest='in_tree',
|
2014-09-06 01:00:10 +00:00
|
|
|
action='store_true', default=False,
|
|
|
|
help='Build in the source tree instead of a separate directory')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-I', '--ide', action='store_true', default=False,
|
2022-07-12 01:03:56 +00:00
|
|
|
help='Create build output that can be parsed by an IDE')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-j', '--jobs', dest='jobs', type=int,
|
2014-09-06 01:00:10 +00:00
|
|
|
default=None, help='Number of jobs to run at once (passed to make)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-k', '--keep-outputs', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Keep all build output files (e.g. binaries)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-K', '--show-config', action='store_true',
|
2023-07-19 23:49:02 +00:00
|
|
|
default=False,
|
|
|
|
help='Show configuration changes in summary (both board config files and Kconfig)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--preserve-config-y', action='store_true',
|
2016-11-13 21:25:53 +00:00
|
|
|
default=False, help="Don't convert y to 1 in configs")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-l', '--list-error-boards', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show a list of boards next to each error/warning')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-L', '--no-lto', action='store_true',
|
2023-02-21 19:40:28 +00:00
|
|
|
default=False, help='Disable Link-time Optimisation (LTO) for builds')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--list-tool-chains', action='store_true', default=False,
|
2018-11-06 23:02:10 +00:00
|
|
|
help='List available tool chains (use -v to see probing detail)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-m', '--mrproper', action='store_true',
|
2020-04-09 21:08:51 +00:00
|
|
|
default=False, help="Run 'make mrproper before reconfiguring")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument(
|
2022-11-10 02:14:53 +00:00
|
|
|
'-M', '--allow-missing', action='store_true', default=False,
|
2023-07-19 23:49:02 +00:00
|
|
|
help='Tell binman to allow missing blobs and generate fake ones as needed')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--maintainer-check', action='store_true',
|
|
|
|
help='Check that maintainer entries exist for each board')
|
|
|
|
parser.add_argument(
|
2022-11-10 02:14:53 +00:00
|
|
|
'--no-allow-missing', action='store_true', default=False,
|
2023-07-19 23:49:02 +00:00
|
|
|
help='Disable telling binman to allow missing blobs')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
|
2014-09-04 17:23:27 +00:00
|
|
|
default=False, help="Do a dry run (describe actions, but do nothing)")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
|
2023-07-19 23:49:02 +00:00
|
|
|
default=False,
|
|
|
|
help="Don't create subdirectories when building current source for a single board")
|
2023-07-19 23:49:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def add_after_m(parser):
|
|
|
|
"""Add arguments after 'M'
|
|
|
|
|
|
|
|
Args:
|
|
|
|
parser (ArgumentParser): Parse to add to
|
|
|
|
|
|
|
|
This is split out to avoid having too many statements in one function
|
|
|
|
"""
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-o', '--output-dir', type=str, dest='output_dir',
|
2014-09-06 01:00:10 +00:00
|
|
|
help='Directory where all builds happen and buildman has its workspace (default is ../)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-O', '--override-toolchain', type=str,
|
2019-01-07 23:44:20 +00:00
|
|
|
help="Override host toochain to use for sandbox (e.g. 'clang-7')")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-Q', '--quick', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Do a rough build, with limited warning resolution')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-p', '--full-path', action='store_true',
|
2014-12-02 00:34:00 +00:00
|
|
|
default=False, help="Use full toolchain path in CROSS_COMPILE")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-P', '--per-board-out-dir', action='store_true',
|
2016-04-11 16:48:44 +00:00
|
|
|
default=False, help="Use an O= (output) directory per board rather than per thread")
|
2023-07-19 23:49:28 +00:00
|
|
|
parser.add_argument('--print-arch', action='store_true',
|
|
|
|
default=False, help="Print the architecture for a board (ARCH=)")
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-r', '--reproducible-builds', action='store_true',
|
2023-02-21 19:40:29 +00:00
|
|
|
help='Set SOURCE_DATE_EPOCH=0 to suuport a reproducible build')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-R', '--regen-board-list', type=str,
|
2022-07-12 01:04:04 +00:00
|
|
|
help='Force regeneration of the list of boards, like the old boards.cfg file')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-s', '--summary', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show a build summary')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-S', '--show-sizes', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show image size variation in summary')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--step', type=int,
|
2014-09-06 01:00:10 +00:00
|
|
|
default=1, help='Only build every n commits (0=just first and last)')
|
2023-02-24 01:18:10 +00:00
|
|
|
if HAS_TESTS:
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('--skip-net-tests', action='store_true', default=False,
|
2023-02-24 01:18:10 +00:00
|
|
|
help='Skip tests which need the network')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-t', '--test', action='store_true', dest='test',
|
2023-02-24 01:18:10 +00:00
|
|
|
default=False, help='run tests')
|
2023-07-19 23:49:31 +00:00
|
|
|
parser.add_argument('--coverage', action='store_true',
|
|
|
|
help='Calculated test coverage')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-T', '--threads', type=int,
|
2021-01-31 05:17:46 +00:00
|
|
|
default=None,
|
|
|
|
help='Number of builder threads to use (0=single-thread)')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-u', '--show_unknown', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show boards with unknown build result')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-U', '--show-environment', action='store_true',
|
2018-05-31 04:48:34 +00:00
|
|
|
default=False, help='Show environment changes in summary')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-v', '--verbose', action='store_true',
|
2014-09-06 01:00:10 +00:00
|
|
|
default=False, help='Show build results while the build progresses')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-V', '--verbose-build', action='store_true',
|
2016-03-13 01:50:33 +00:00
|
|
|
default=False, help='Run make with V=1, logging all output')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-w', '--work-in-output', action='store_true',
|
2020-03-18 15:42:42 +00:00
|
|
|
default=False, help='Use the output directory as the work directory')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-W', '--ignore-warnings', action='store_true',
|
2020-03-18 15:42:44 +00:00
|
|
|
default=False, help='Return success even if there are warnings')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-x', '--exclude', dest='exclude',
|
|
|
|
type=str, action='append',
|
2014-09-06 01:00:10 +00:00
|
|
|
help='Specify a list of boards to exclude, separated by comma')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-y', '--filter-dtb-warnings', action='store_true',
|
2020-04-09 21:08:52 +00:00
|
|
|
default=False,
|
2020-04-09 21:08:53 +00:00
|
|
|
help='Filter out device-tree-compiler warnings from output')
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('-Y', '--filter-migration-warnings', action='store_true',
|
2020-04-09 21:08:53 +00:00
|
|
|
default=False,
|
|
|
|
help='Filter out migration warnings from output')
|
2023-07-19 23:49:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
"""Parse command line arguments from sys.argv[]
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple containing:
|
|
|
|
options: command line options
|
|
|
|
args: command lin arguments
|
|
|
|
"""
|
|
|
|
epilog = """ [list of target/arch/cpu/board/vendor/soc to build]
|
|
|
|
|
|
|
|
Build U-Boot for all commits in a branch. Use -n to do a dry run"""
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(epilog=epilog)
|
|
|
|
add_upto_m(parser)
|
|
|
|
add_after_m(parser)
|
2023-07-19 23:49:04 +00:00
|
|
|
parser.add_argument('terms', type=str, nargs='*',
|
|
|
|
help='Board / SoC names to build')
|
2014-09-06 01:00:10 +00:00
|
|
|
|
|
|
|
return parser.parse_args()
|