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:
Thomas Stilwell 2019-10-23 14:25:09 +02:00 committed by Anas Nashif
commit 5310510d07

View file

@ -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>/""")