mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 04:46:01 +01:00
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',
|
parser.add_option('-i', '--in-tree', dest='in_tree',
|
||||||
action='store_true', default=False,
|
action='store_true', default=False,
|
||||||
help='Build in the source tree instead of a separate directory')
|
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',
|
parser.add_option('-j', '--jobs', dest='jobs', type='int',
|
||||||
default=None, help='Number of jobs to run at once (passed to make)')
|
default=None, help='Number of jobs to run at once (passed to make)')
|
||||||
parser.add_option('-k', '--keep-outputs', action='store_true',
|
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()
|
print()
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
if options.incremental:
|
|
||||||
print(col.build(col.RED,
|
|
||||||
'Warning: -I has been removed. See documentation'))
|
|
||||||
if not options.output_dir:
|
if not options.output_dir:
|
||||||
if options.work_in_output:
|
if options.work_in_output:
|
||||||
sys.exit(col.build(col.RED, '-w requires that you specify -o'))
|
sys.exit(col.build(col.RED, '-w requires that you specify -o'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user