From b1a27a77a2b0a63eecc0d80798821ee1fa4bbc20 Mon Sep 17 00:00:00 2001 From: Torsten Rasmussen Date: Wed, 8 Jan 2025 14:50:03 +0100 Subject: [PATCH] cmake: store board directories in build_info The schema for build info already contained a `board:path` sequence tag definition, but boards.cmake did not populate this in the generated build_info.yml. Fix this by correctly populating the `board:path` with list of board directories. Signed-off-by: Torsten Rasmussen --- cmake/modules/boards.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/modules/boards.cmake b/cmake/modules/boards.cmake index 2b78845482a..3f086dca948 100644 --- a/cmake/modules/boards.cmake +++ b/cmake/modules/boards.cmake @@ -357,3 +357,4 @@ build_info(board name VALUE ${BOARD}) string(REGEX REPLACE "^/" "" qualifiers "${BOARD_QUALIFIERS}") build_info(board qualifiers VALUE ${qualifiers}) build_info(board revision VALUE ${BOARD_REVISION}) +build_info(board path PATH ${BOARD_DIRECTORIES})