mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00: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:
parent
67b5ec54a5
commit
f62cea0e20
3 changed files with 7 additions and 7 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue