sanitycheck: fix --board-root parser to enable multiple path args
accidently removed during sanitycheck refactor Signed-off-by: Thomas Stilwell <Thomas.Stilwell@nordicsemi.no>
This commit is contained in:
parent
9784f800a6
commit
5310510d07
1 changed files with 1 additions and 1 deletions
|
@ -3251,7 +3251,7 @@ Artificially long but functional example:
|
||||||
"%s/scripts/sanity_chk/boards" % ZEPHYR_BASE]
|
"%s/scripts/sanity_chk/boards" % ZEPHYR_BASE]
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-A", "--board-root", default=board_root_list,
|
"-A", "--board-root", action="append", default=board_root_list,
|
||||||
help="""Directory to search for board configuration files. All .yaml
|
help="""Directory to search for board configuration files. All .yaml
|
||||||
files in the directory will be processed. The directory should have the same
|
files in the directory will be processed. The directory should have the same
|
||||||
structure in the main Zephyr tree: boards/<arch>/<board_name>/""")
|
structure in the main Zephyr tree: boards/<arch>/<board_name>/""")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue