Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 2 | # Copyright (c) 2014 Google, Inc |
| 3 | # |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 4 | |
| 5 | from optparse import OptionParser |
| 6 | |
| 7 | def ParseArgs(): |
| 8 | """Parse command line arguments from sys.argv[] |
| 9 | |
| 10 | Returns: |
| 11 | tuple containing: |
| 12 | options: command line options |
| 13 | args: command lin arguments |
| 14 | """ |
| 15 | parser = OptionParser() |
Simon Glass | 2b4806e | 2022-01-22 05:07:33 -0700 | [diff] [blame] | 16 | parser.add_option('-a', '--adjust-cfg', type=str, action='append', |
| 17 | help='Adjust the Kconfig settings in .config before building') |
Simon Glass | 57cb9d5 | 2019-12-05 15:59:14 -0700 | [diff] [blame] | 18 | parser.add_option('-A', '--print-prefix', action='store_true', |
| 19 | help='Print the tool-chain prefix for a board (CROSS_COMPILE=)') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 20 | parser.add_option('-b', '--branch', type='string', |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 21 | help='Branch name to build, or range of commits to build') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 22 | parser.add_option('-B', '--bloat', dest='show_bloat', |
| 23 | action='store_true', default=False, |
| 24 | help='Show changes in function code size for each board') |
Simon Glass | 0689036 | 2018-06-11 23:26:46 -0600 | [diff] [blame] | 25 | parser.add_option('--boards', type='string', action='append', |
| 26 | help='List of board names to build separated by comma') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 27 | parser.add_option('-c', '--count', dest='count', type='int', |
| 28 | default=-1, help='Run build on the top n commits') |
| 29 | parser.add_option('-C', '--force-reconfig', dest='force_reconfig', |
| 30 | action='store_true', default=False, |
| 31 | help='Reconfigure for every commit (disable incremental build)') |
| 32 | parser.add_option('-d', '--detail', dest='show_detail', |
| 33 | action='store_true', default=False, |
Simon Glass | f9c094b | 2020-03-18 09:42:43 -0600 | [diff] [blame] | 34 | help='Show detailed size delta for each board in the -S summary') |
Simon Glass | b50113f | 2016-11-13 14:25:51 -0700 | [diff] [blame] | 35 | parser.add_option('-D', '--config-only', action='store_true', default=False, |
| 36 | help="Don't build, just configure each commit") |
Simon Glass | 433fa54 | 2022-01-22 05:07:29 -0700 | [diff] [blame] | 37 | parser.add_option('--debug', action='store_true', |
| 38 | help='Enabling debugging (provides a full traceback on error)') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 39 | parser.add_option('-e', '--show_errors', action='store_true', |
| 40 | default=False, help='Show errors and warnings') |
Daniel Schwierzeck | 2371d1b | 2018-01-26 16:31:05 +0100 | [diff] [blame] | 41 | parser.add_option('-E', '--warnings-as-errors', action='store_true', |
| 42 | default=False, help='Treat all compiler warnings as errors') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 43 | parser.add_option('-f', '--force-build', dest='force_build', |
| 44 | action='store_true', default=False, |
| 45 | help='Force build of boards even if already built') |
| 46 | parser.add_option('-F', '--force-build-failures', dest='force_build_failures', |
| 47 | action='store_true', default=False, |
| 48 | help='Force build of previously-failed build') |
Simon Glass | 827e37b | 2014-12-01 17:34:06 -0700 | [diff] [blame] | 49 | parser.add_option('--fetch-arch', type='string', |
| 50 | help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)." |
| 51 | ' You can also fetch several toolchains separate by comma, or' |
| 52 | " 'all' to download all") |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 53 | parser.add_option('-g', '--git', type='string', |
| 54 | help='Git repo containing branch to build', default='.') |
| 55 | parser.add_option('-G', '--config-file', type='string', |
| 56 | help='Path to buildman config file', default='') |
| 57 | parser.add_option('-H', '--full-help', action='store_true', dest='full_help', |
| 58 | default=False, help='Display the README file') |
| 59 | parser.add_option('-i', '--in-tree', dest='in_tree', |
| 60 | action='store_true', default=False, |
| 61 | help='Build in the source tree instead of a separate directory') |
Simon Glass | ae1a09f | 2022-07-11 19:03:56 -0600 | [diff] [blame] | 62 | parser.add_option('-I', '--ide', action='store_true', default=False, |
| 63 | help='Create build output that can be parsed by an IDE') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 64 | parser.add_option('-j', '--jobs', dest='jobs', type='int', |
| 65 | default=None, help='Number of jobs to run at once (passed to make)') |
| 66 | parser.add_option('-k', '--keep-outputs', action='store_true', |
| 67 | default=False, help='Keep all build output files (e.g. binaries)') |
Simon Glass | 843312d | 2015-02-05 22:06:15 -0700 | [diff] [blame] | 68 | parser.add_option('-K', '--show-config', action='store_true', |
| 69 | default=False, help='Show configuration changes in summary (both board config files and Kconfig)') |
Simon Glass | b464f8e | 2016-11-13 14:25:53 -0700 | [diff] [blame] | 70 | parser.add_option('--preserve-config-y', action='store_true', |
| 71 | default=False, help="Don't convert y to 1 in configs") |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 72 | parser.add_option('-l', '--list-error-boards', action='store_true', |
| 73 | default=False, help='Show a list of boards next to each error/warning') |
| 74 | parser.add_option('--list-tool-chains', action='store_true', default=False, |
Simon Glass | 40232c9 | 2018-11-06 16:02:10 -0700 | [diff] [blame] | 75 | help='List available tool chains (use -v to see probing detail)') |
Simon Glass | eb70a2c | 2020-04-09 15:08:51 -0600 | [diff] [blame] | 76 | parser.add_option('-m', '--mrproper', action='store_true', |
| 77 | default=False, help="Run 'make mrproper before reconfiguring") |
Tom Rini | d7713ad | 2022-11-09 19:14:53 -0700 | [diff] [blame] | 78 | parser.add_option( |
| 79 | '-M', '--allow-missing', action='store_true', default=False, |
| 80 | help='Tell binman to allow missing blobs and generate fake ones as needed'), |
| 81 | parser.add_option( |
| 82 | '--no-allow-missing', action='store_true', default=False, |
| 83 | help='Disable telling binman to allow missing blobs'), |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 84 | parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run', |
Masahiro Yamada | d0ea61d | 2014-09-05 02:23:27 +0900 | [diff] [blame] | 85 | default=False, help="Do a dry run (describe actions, but do nothing)") |
Simon Glass | 5971ab5 | 2014-12-01 17:33:55 -0700 | [diff] [blame] | 86 | parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs', |
| 87 | default=False, help="Don't create subdirectories when building current source for a single board") |
Simon Glass | 88daaef | 2020-04-17 17:51:32 -0600 | [diff] [blame] | 88 | parser.add_option('-o', '--output-dir', type='string', dest='output_dir', |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 89 | help='Directory where all builds happen and buildman has its workspace (default is ../)') |
Simon Glass | 00beb24 | 2019-01-07 16:44:20 -0700 | [diff] [blame] | 90 | parser.add_option('-O', '--override-toolchain', type='string', |
| 91 | help="Override host toochain to use for sandbox (e.g. 'clang-7')") |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 92 | parser.add_option('-Q', '--quick', action='store_true', |
| 93 | default=False, help='Do a rough build, with limited warning resolution') |
Simon Glass | bb1501f | 2014-12-01 17:34:00 -0700 | [diff] [blame] | 94 | parser.add_option('-p', '--full-path', action='store_true', |
| 95 | default=False, help="Use full toolchain path in CROSS_COMPILE") |
Stephen Warren | f79f1e0 | 2016-04-11 10:48:44 -0600 | [diff] [blame] | 96 | parser.add_option('-P', '--per-board-out-dir', action='store_true', |
| 97 | default=False, help="Use an O= (output) directory per board rather than per thread") |
Simon Glass | a8a0141 | 2022-07-11 19:04:04 -0600 | [diff] [blame] | 98 | parser.add_option('-R', '--regen-board-list', action='store_true', |
| 99 | help='Force regeneration of the list of boards, like the old boards.cfg file') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 100 | parser.add_option('-s', '--summary', action='store_true', |
| 101 | default=False, help='Show a build summary') |
| 102 | parser.add_option('-S', '--show-sizes', action='store_true', |
| 103 | default=False, help='Show image size variation in summary') |
Simon Glass | cb39a10 | 2017-11-12 21:52:14 -0700 | [diff] [blame] | 104 | parser.add_option('--skip-net-tests', action='store_true', default=False, |
| 105 | help='Skip tests which need the network') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 106 | parser.add_option('--step', type='int', |
| 107 | default=1, help='Only build every n commits (0=just first and last)') |
| 108 | parser.add_option('-t', '--test', action='store_true', dest='test', |
| 109 | default=False, help='run tests') |
| 110 | parser.add_option('-T', '--threads', type='int', |
Simon Glass | b82492b | 2021-01-30 22:17:46 -0700 | [diff] [blame] | 111 | default=None, |
| 112 | help='Number of builder threads to use (0=single-thread)') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 113 | parser.add_option('-u', '--show_unknown', action='store_true', |
| 114 | default=False, help='Show boards with unknown build result') |
Alex Kiernan | 48ae412 | 2018-05-31 04:48:34 +0000 | [diff] [blame] | 115 | parser.add_option('-U', '--show-environment', action='store_true', |
| 116 | default=False, help='Show environment changes in summary') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 117 | parser.add_option('-v', '--verbose', action='store_true', |
| 118 | default=False, help='Show build results while the build progresses') |
Simon Glass | d2ce658 | 2014-12-01 17:34:07 -0700 | [diff] [blame] | 119 | parser.add_option('-V', '--verbose-build', action='store_true', |
Simon Glass | c81d0d2 | 2016-03-12 18:50:33 -0700 | [diff] [blame] | 120 | default=False, help='Run make with V=1, logging all output') |
Simon Glass | d829f12 | 2020-03-18 09:42:42 -0600 | [diff] [blame] | 121 | parser.add_option('-w', '--work-in-output', action='store_true', |
| 122 | default=False, help='Use the output directory as the work directory') |
Simon Glass | 7beb43c | 2020-03-18 09:42:44 -0600 | [diff] [blame] | 123 | parser.add_option('-W', '--ignore-warnings', action='store_true', |
| 124 | default=False, help='Return success even if there are warnings') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 125 | parser.add_option('-x', '--exclude', dest='exclude', |
| 126 | type='string', action='append', |
| 127 | help='Specify a list of boards to exclude, separated by comma') |
Simon Glass | 174592b | 2020-04-09 15:08:52 -0600 | [diff] [blame] | 128 | parser.add_option('-y', '--filter-dtb-warnings', action='store_true', |
| 129 | default=False, |
Simon Glass | 113a8a5 | 2020-04-09 15:08:53 -0600 | [diff] [blame] | 130 | help='Filter out device-tree-compiler warnings from output') |
| 131 | parser.add_option('-Y', '--filter-migration-warnings', action='store_true', |
| 132 | default=False, |
| 133 | help='Filter out migration warnings from output') |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 134 | |
Simon Glass | 0689036 | 2018-06-11 23:26:46 -0600 | [diff] [blame] | 135 | parser.usage += """ [list of target/arch/cpu/board/vendor/soc to build] |
Simon Glass | d3d5c12 | 2014-09-05 19:00:10 -0600 | [diff] [blame] | 136 | |
| 137 | Build U-Boot for all commits in a branch. Use -n to do a dry run""" |
| 138 | |
| 139 | return parser.parse_args() |