cmdline.py (5971ab5c44cb0c32c88fcdc90a3a9b6430463c4c) cmdline.py (bb1501f2c22c979961b735db775605cccedd98f6)
1#
2# Copyright (c) 2014 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7from optparse import OptionParser
8

--- 48 unchanged lines hidden (view full) ---

57 default=False, help="Do a dry run (describe actions, but do nothing)")
58 parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
59 default=False, help="Don't create subdirectories when building current source for a single board")
60 parser.add_option('-o', '--output-dir', type='string',
61 dest='output_dir', default='..',
62 help='Directory where all builds happen and buildman has its workspace (default is ../)')
63 parser.add_option('-Q', '--quick', action='store_true',
64 default=False, help='Do a rough build, with limited warning resolution')
1#
2# Copyright (c) 2014 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7from optparse import OptionParser
8

--- 48 unchanged lines hidden (view full) ---

57 default=False, help="Do a dry run (describe actions, but do nothing)")
58 parser.add_option('-N', '--no-subdirs', action='store_true', dest='no_subdirs',
59 default=False, help="Don't create subdirectories when building current source for a single board")
60 parser.add_option('-o', '--output-dir', type='string',
61 dest='output_dir', default='..',
62 help='Directory where all builds happen and buildman has its workspace (default is ../)')
63 parser.add_option('-Q', '--quick', action='store_true',
64 default=False, help='Do a rough build, with limited warning resolution')
65 parser.add_option('-p', '--full-path', action='store_true',
66 default=False, help="Use full toolchain path in CROSS_COMPILE")
65 parser.add_option('-s', '--summary', action='store_true',
66 default=False, help='Show a build summary')
67 parser.add_option('-S', '--show-sizes', action='store_true',
68 default=False, help='Show image size variation in summary')
69 parser.add_option('--step', type='int',
70 default=1, help='Only build every n commits (0=just first and last)')
71 parser.add_option('-t', '--test', action='store_true', dest='test',
72 default=False, help='run tests')

--- 15 unchanged lines hidden ---
67 parser.add_option('-s', '--summary', action='store_true',
68 default=False, help='Show a build summary')
69 parser.add_option('-S', '--show-sizes', action='store_true',
70 default=False, help='Show image size variation in summary')
71 parser.add_option('--step', type='int',
72 default=1, help='Only build every n commits (0=just first and last)')
73 parser.add_option('-t', '--test', action='store_true', dest='test',
74 default=False, help='run tests')

--- 15 unchanged lines hidden ---