1*4882a593Smuzhiyun# 2*4882a593Smuzhiyun# Copyright (c) 2014 Google, Inc 3*4882a593Smuzhiyun# 4*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0+ 5*4882a593Smuzhiyun# 6*4882a593Smuzhiyun 7*4882a593Smuzhiyunfrom optparse import OptionParser 8*4882a593Smuzhiyun 9*4882a593Smuzhiyundef ParseArgs(): 10*4882a593Smuzhiyun """Parse command line arguments from sys.argv[] 11*4882a593Smuzhiyun 12*4882a593Smuzhiyun Returns: 13*4882a593Smuzhiyun tuple containing: 14*4882a593Smuzhiyun options: command line options 15*4882a593Smuzhiyun args: command lin arguments 16*4882a593Smuzhiyun """ 17*4882a593Smuzhiyun parser = OptionParser() 18*4882a593Smuzhiyun parser.add_option('-b', '--branch', type='string', 19*4882a593Smuzhiyun help='Branch name to build, or range of commits to build') 20*4882a593Smuzhiyun parser.add_option('-B', '--bloat', dest='show_bloat', 21*4882a593Smuzhiyun action='store_true', default=False, 22*4882a593Smuzhiyun help='Show changes in function code size for each board') 23*4882a593Smuzhiyun parser.add_option('-c', '--count', dest='count', type='int', 24*4882a593Smuzhiyun default=-1, help='Run build on the top n commits') 25*4882a593Smuzhiyun parser.add_option('-C', '--force-reconfig', dest='force_reconfig', 26*4882a593Smuzhiyun action='store_true', default=False, 27*4882a593Smuzhiyun help='Reconfigure for every commit (disable incremental build)') 28*4882a593Smuzhiyun parser.add_option('-d', '--detail', dest='show_detail', 29*4882a593Smuzhiyun action='store_true', default=False, 30*4882a593Smuzhiyun help='Show detailed information for each board in summary') 31*4882a593Smuzhiyun parser.add_option('-D', '--config-only', action='store_true', default=False, 32*4882a593Smuzhiyun help="Don't build, just configure each commit") 33*4882a593Smuzhiyun parser.add_option('-e', '--show_errors', action='store_true', 34*4882a593Smuzhiyun default=False, help='Show errors and warnings') 35*4882a593Smuzhiyun parser.add_option('-f', '--force-build', dest='force_build', 36*4882a593Smuzhiyun action='store_true', default=False, 37*4882a593Smuzhiyun help='Force build of boards even if already built') 38*4882a593Smuzhiyun parser.add_option('-F', '--force-build-failures', dest='force_build_failures', 39*4882a593Smuzhiyun action='store_true', default=False, 40*4882a593Smuzhiyun help='Force build of previously-failed build') 41*4882a593Smuzhiyun parser.add_option('--fetch-arch', type='string', 42*4882a593Smuzhiyun help="Fetch a toolchain for architecture FETCH_ARCH ('list' to list)." 43*4882a593Smuzhiyun ' You can also fetch several toolchains separate by comma, or' 44*4882a593Smuzhiyun " 'all' to download all") 45*4882a593Smuzhiyun parser.add_option('-g', '--git', type='string', 46*4882a593Smuzhiyun help='Git repo containing branch to build', default='.') 47*4882a593Smuzhiyun parser.add_option('-G', '--config-file', type='string', 48*4882a593Smuzhiyun help='Path to buildman config file', default='') 49*4882a593Smuzhiyun parser.add_option('-H', '--full-help', action='store_true', dest='full_help', 50*4882a593Smuzhiyun default=False, help='Display the README file') 51*4882a593Smuzhiyun parser.add_option('-i', '--in-tree', dest='in_tree', 52*4882a593Smuzhiyun action='store_true', default=False, 53*4882a593Smuzhiyun help='Build in the source tree instead of a separate directory') 54*4882a593Smuzhiyun parser.add_option('-I', '--incremental', action='store_true', 55*4882a593Smuzhiyun default=False, help='Do not run make mrproper (when reconfiguring)') 56*4882a593Smuzhiyun parser.add_option('-j', '--jobs', dest='jobs', type='int', 57*4882a593Smuzhiyun default=None, help='Number of jobs to run at once (passed to make)') 58*4882a593Smuzhiyun parser.add_option('-k', '--keep-outputs', action='store_true', 59*4882a593Smuzhiyun default=False, help='Keep all build output files (e.g. binaries)') 60*4882a593Smuzhiyun parser.add_option('-K', '--show-config', action='store_true', 61*4882a593Smuzhiyun default=False, help='Show configuration changes in summary (both board config files and Kconfig)') 62*4882a593Smuzhiyun parser.add_option('--preserve-config-y', action='store_true', 63*4882a593Smuzhiyun default=False, help="Don't convert y to 1 in configs") 64*4882a593Smuzhiyun parser.add_option('-l', '--list-error-boards', action='store_true', 65*4882a593Smuzhiyun default=False, help='Show a list of boards next to each error/warning') 66*4882a593Smuzhiyun parser.add_option('--list-tool-chains', action='store_true', default=False, 67*4882a593Smuzhiyun help='List available tool chains') 68*4882a593Smuzhiyun parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run', 69*4882a593Smuzhiyun default=False, help="Do a dry run (describe actions, but do nothing)") 70*4882a593Smuzhiyun parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs', 71*4882a593Smuzhiyun default=False, help="Don't create subdirectories when building current source for a single board") 72*4882a593Smuzhiyun parser.add_option('-o', '--output-dir', type='string', 73*4882a593Smuzhiyun dest='output_dir', default='..', 74*4882a593Smuzhiyun help='Directory where all builds happen and buildman has its workspace (default is ../)') 75*4882a593Smuzhiyun parser.add_option('-Q', '--quick', action='store_true', 76*4882a593Smuzhiyun default=False, help='Do a rough build, with limited warning resolution') 77*4882a593Smuzhiyun parser.add_option('-p', '--full-path', action='store_true', 78*4882a593Smuzhiyun default=False, help="Use full toolchain path in CROSS_COMPILE") 79*4882a593Smuzhiyun parser.add_option('-P', '--per-board-out-dir', action='store_true', 80*4882a593Smuzhiyun default=False, help="Use an O= (output) directory per board rather than per thread") 81*4882a593Smuzhiyun parser.add_option('-s', '--summary', action='store_true', 82*4882a593Smuzhiyun default=False, help='Show a build summary') 83*4882a593Smuzhiyun parser.add_option('-S', '--show-sizes', action='store_true', 84*4882a593Smuzhiyun default=False, help='Show image size variation in summary') 85*4882a593Smuzhiyun parser.add_option('--step', type='int', 86*4882a593Smuzhiyun default=1, help='Only build every n commits (0=just first and last)') 87*4882a593Smuzhiyun parser.add_option('-t', '--test', action='store_true', dest='test', 88*4882a593Smuzhiyun default=False, help='run tests') 89*4882a593Smuzhiyun parser.add_option('-T', '--threads', type='int', 90*4882a593Smuzhiyun default=None, help='Number of builder threads to use') 91*4882a593Smuzhiyun parser.add_option('-u', '--show_unknown', action='store_true', 92*4882a593Smuzhiyun default=False, help='Show boards with unknown build result') 93*4882a593Smuzhiyun parser.add_option('-v', '--verbose', action='store_true', 94*4882a593Smuzhiyun default=False, help='Show build results while the build progresses') 95*4882a593Smuzhiyun parser.add_option('-V', '--verbose-build', action='store_true', 96*4882a593Smuzhiyun default=False, help='Run make with V=1, logging all output') 97*4882a593Smuzhiyun parser.add_option('-x', '--exclude', dest='exclude', 98*4882a593Smuzhiyun type='string', action='append', 99*4882a593Smuzhiyun help='Specify a list of boards to exclude, separated by comma') 100*4882a593Smuzhiyun 101*4882a593Smuzhiyun parser.usage += """ 102*4882a593Smuzhiyun 103*4882a593Smuzhiyun Build U-Boot for all commits in a branch. Use -n to do a dry run""" 104*4882a593Smuzhiyun 105*4882a593Smuzhiyun return parser.parse_args() 106