buildman: Drop -I option
This has been deprecated with a notice that it will be removed after April 2021. Drop it now. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
46b5c8ed01
commit
5635c50720
@ -59,9 +59,6 @@ def ParseArgs():
|
||||
parser.add_option('-i', '--in-tree', dest='in_tree',
|
||||
action='store_true', default=False,
|
||||
help='Build in the source tree instead of a separate directory')
|
||||
# -I will be removed after April 2021
|
||||
parser.add_option('-I', '--incremental', action='store_true',
|
||||
default=False, help='Deprecated, does nothing. See -m')
|
||||
parser.add_option('-j', '--jobs', dest='jobs', type='int',
|
||||
default=None, help='Number of jobs to run at once (passed to make)')
|
||||
parser.add_option('-k', '--keep-outputs', action='store_true',
|
||||
|
@ -176,9 +176,6 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
|
||||
print()
|
||||
return 0
|
||||
|
||||
if options.incremental:
|
||||
print(col.build(col.RED,
|
||||
'Warning: -I has been removed. See documentation'))
|
||||
if not options.output_dir:
|
||||
if options.work_in_output:
|
||||
sys.exit(col.build(col.RED, '-w requires that you specify -o'))
|
||||
|
Loading…
Reference in New Issue
Block a user