mirror of
https://xff.cz/git/u-boot/
synced 2025-09-24 12:02:11 +02:00
dtoc: Use None to mean stdout
At present dtoc uses '-' internally to mean that output should go to stdout. This is not necessary and None is more convenient. Update it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -91,7 +91,7 @@ parser.add_option('-d', '--dtb-file', action='store',
|
||||
help='Specify the .dtb input file')
|
||||
parser.add_option('--include-disabled', action='store_true',
|
||||
help='Include disabled nodes')
|
||||
parser.add_option('-o', '--output', action='store', default='-',
|
||||
parser.add_option('-o', '--output', action='store',
|
||||
help='Select output filename')
|
||||
parser.add_option('-P', '--processes', type=int,
|
||||
help='set number of processes to use for running tests')
|
||||
|
Reference in New Issue
Block a user