Skip to content

Commit 652ee91

Browse files
pillo79kartben
authored andcommitted
llext-edk: fix BOARD_TARGET variable generation to be Zephyr-compatible
The board revision is not part of the NORMALIZED_BOARD_TARGET variable as composed by Zephyr, so it must also not be used in the EDK exported value to avoid mismatches. The revision is exported as a separate variable, so it can still be used to differentiate between board revisions. Signed-off-by: Luca Burelli <[email protected]>
1 parent fa6a9ae commit 652ee91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cmake/llext-edk.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ yaml_get(board_qualifiers NAME build_info KEY cmake board qualifiers)
166166
yaml_get(board_revision NAME build_info KEY cmake board revision)
167167
zephyr_build_string(normalized_board_target
168168
BOARD ${board_name}
169-
BOARD_QUALIFIERS ${board_qualifiers}
170-
BOARD_REVISION ${board_revision})
169+
BOARD_QUALIFIERS ${board_qualifiers})
171170

172171
set(llext_edk_name ${CONFIG_LLEXT_EDK_NAME})
173172
set(llext_edk ${PROJECT_BINARY_DIR}/${llext_edk_name})

0 commit comments

Comments
 (0)