Skip to content

Commit 595574f

Browse files
committed
cmake: Renamed savedefconfig with refreshsilent
Renamed savedefconfig -> refreshsilent name more consistent with the refresh stage for cmake on github. Added new savedefconfig to fix apache#14281
1 parent 8cc2fbf commit 595574f

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

cmake/menuconfig.cmake

+12-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ add_custom_target(
7272

7373
# utility target to refresh .config from board's defconfig for GITHUB
7474
add_custom_target(
75-
savedefconfig
75+
refreshsilent
7676
COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/SAVEconfig
7777
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/.config
7878
${CMAKE_BINARY_DIR}/SAVEconfig
@@ -87,3 +87,14 @@ add_custom_target(
8787
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/defconfig
8888
${NUTTX_DEFCONFIG}
8989
WORKING_DIRECTORY ${NUTTX_DIR})
90+
91+
# utility target to replace defconfig to board's defconfig
92+
add_custom_target(
93+
savedefconfig
94+
COMMAND ${CMAKE_COMMAND} -E env ${KCONFIG_ENV} savedefconfig --out
95+
${CMAKE_BINARY_DIR}/defconfig.tmp
96+
COMMAND ${CMAKE_COMMAND} -P ${NUTTX_DIR}/cmake/savedefconfig.cmake
97+
${CMAKE_BINARY_DIR}/.config ${CMAKE_BINARY_DIR}/defconfig.tmp
98+
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/defconfig
99+
${NUTTX_DEFCONFIG}
100+
WORKING_DIRECTORY ${NUTTX_DIR})

tools/testbuild.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,8 @@ function refresh_cmake {
450450
kconfig-tweak --file $nuttx/build/.config -d $toolchain
451451
fi
452452

453-
if ! cmake --build build -t savedefconfig 1>/dev/null; then
454-
cmake --build build -t savedefconfig
453+
if ! cmake --build build -t refreshsilent 1>/dev/null; then
454+
cmake --build build -t refreshsilent
455455
fail=1
456456
fi
457457

0 commit comments

Comments
 (0)