File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ add_custom_target(
72
72
73
73
# utility target to refresh .config from board's defconfig for GITHUB
74
74
add_custom_target (
75
- savedefconfig
75
+ refreshsilent
76
76
COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR} /SAVEconfig
77
77
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR} /.config
78
78
${CMAKE_BINARY_DIR} /SAVEconfig
@@ -87,3 +87,14 @@ add_custom_target(
87
87
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR} /defconfig
88
88
${NUTTX_DEFCONFIG}
89
89
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} )
Original file line number Diff line number Diff line change @@ -450,8 +450,8 @@ function refresh_cmake {
450
450
kconfig-tweak --file $nuttx /build/.config -d $toolchain
451
451
fi
452
452
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
455
455
fail=1
456
456
fi
457
457
You can’t perform that action at this time.
0 commit comments