cmdline.py (827e37b55869933951e7e7db3693d4df001fd609) | cmdline.py (d2ce658de527af4eaa193ccb7c4d881e02a31257) |
---|---|
1# 2# Copyright (c) 2014 Google, Inc 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7from optparse import OptionParser 8 --- 68 unchanged lines hidden (view full) --- 77 parser.add_option('-t', '--test', action='store_true', dest='test', 78 default=False, help='run tests') 79 parser.add_option('-T', '--threads', type='int', 80 default=None, help='Number of builder threads to use') 81 parser.add_option('-u', '--show_unknown', action='store_true', 82 default=False, help='Show boards with unknown build result') 83 parser.add_option('-v', '--verbose', action='store_true', 84 default=False, help='Show build results while the build progresses') | 1# 2# Copyright (c) 2014 Google, Inc 3# 4# SPDX-License-Identifier: GPL-2.0+ 5# 6 7from optparse import OptionParser 8 --- 68 unchanged lines hidden (view full) --- 77 parser.add_option('-t', '--test', action='store_true', dest='test', 78 default=False, help='run tests') 79 parser.add_option('-T', '--threads', type='int', 80 default=None, help='Number of builder threads to use') 81 parser.add_option('-u', '--show_unknown', action='store_true', 82 default=False, help='Show boards with unknown build result') 83 parser.add_option('-v', '--verbose', action='store_true', 84 default=False, help='Show build results while the build progresses') |
85 parser.add_option('-V', '--verbose-build', action='store_true', 86 default=False, help='Run make with V=1, showing all output') |
|
85 parser.add_option('-x', '--exclude', dest='exclude', 86 type='string', action='append', 87 help='Specify a list of boards to exclude, separated by comma') 88 89 parser.usage += """ 90 91 Build U-Boot for all commits in a branch. Use -n to do a dry run""" 92 93 return parser.parse_args() | 87 parser.add_option('-x', '--exclude', dest='exclude', 88 type='string', action='append', 89 help='Specify a list of boards to exclude, separated by comma') 90 91 parser.usage += """ 92 93 Build U-Boot for all commits in a branch. Use -n to do a dry run""" 94 95 return parser.parse_args() |