Accessing the Board Store Repository - Xilinx/XilinxBoardStore GitHub Wiki
Vivado Tcl Flow to install boards and set board repo path
Get the initial meta data files
xhub::refresh_catalog [xhub::get_xstores xilinx_board_store]
Install all or selected xitems
xhub::install [xhub::get_xitems]
xhub::install [xhub::get_xitems *myboard*]
How to access installed board files in project flow ?
set_param board.repoPaths [get_property LOCAL_ROOT_DIR [xhub::get_xstores xilinx_board_store]]
Other Tcl Commands
Get the list of xitems available in the store
xhub::get_xitems
You can run "report_property" on individual object to see list of properties e.g
report_property [lindex [xhub::get_xitems] 0]
Uninstall all or selected xitems
xhub::uninstall [xhub::get_xitems]
xhub::uninstall [xhub::get_xitems *myboard*]
Update all or selected xitems
xhub::update [xhub::get_xitems]
xhub::update [xhub::get_xitems *myboard*]