Skip to content

Commit c33838a

Browse files
committed
[nrf toup] Include EXTRAVERSION in Matter software version string
When a Matter application provides the VERSION file, the Matter software version string is set to 4-number string, such as "2.7.99+0" and the EXTRAVERSION field, which is typically used to denote the branch or tag name, such as "dev" or "rc1", is ignored. If the EXTRAVERSION field is non-empty, set the Matter software version string to a string such as "2.7.99-dev+0".
1 parent 5a55d60 commit c33838a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

config/zephyr/ota-image.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function(chip_ota_image TARGET_NAME)
4040
"--version"
4141
${APPVERSION}
4242
"--version-str"
43-
${APP_VERSION_TWEAK_STRING}
43+
${APP_VERSION_EXTENDED_STRING}
4444
"--digest-algorithm"
4545
"sha256"
4646
)

config/zephyr/ota-image_sysbuild.cmake

+7-1
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,14 @@ function(chip_ota_image TARGET_NAME)
4545
set(app_version_patchlevel ${CMAKE_MATCH_1})
4646
string(REGEX MATCH "VERSION_TWEAK = ([0-9]*)" _ ${ver})
4747
set(app_version_tweak ${CMAKE_MATCH_1})
48+
string(REGEX MATCH "EXTRAVERSION = ([a-z0-9]*)" _ ${ver})
49+
set(app_version_extra ${CMAKE_MATCH_1})
4850

49-
set(APP_VERSION_STRING "${app_version_major}.${app_version_minor}.${app_version_patchlevel}+${app_version_tweak}")
51+
if(app_version_extra)
52+
set(APP_VERSION_STRING "${app_version_major}.${app_version_minor}.${app_version_patchlevel}-${app_version_extra}+${app_version_tweak}")
53+
else()
54+
set(APP_VERSION_STRING "${app_version_major}.${app_version_minor}.${app_version_patchlevel}+${app_version_tweak}")
55+
endif()
5056
math(EXPR APPVERSION "(${app_version_major} << 24) | (${app_version_minor} << 16) | (${app_version_patchlevel} << 8) | ${app_version_tweak}" OUTPUT_FORMAT HEXADECIMAL)
5157

5258
set(OTA_ARGS

src/platform/nrfconnect/CHIPDevicePlatformConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#ifdef CONFIG_CHIP_DEVICE_SOFTWARE_VERSION_STRING
4747
#define CHIP_DEVICE_CONFIG_DEVICE_SOFTWARE_VERSION_STRING CONFIG_CHIP_DEVICE_SOFTWARE_VERSION_STRING
4848
#else
49-
#define CHIP_DEVICE_CONFIG_DEVICE_SOFTWARE_VERSION_STRING APP_VERSION_TWEAK_STRING
49+
#define CHIP_DEVICE_CONFIG_DEVICE_SOFTWARE_VERSION_STRING APP_VERSION_EXTENDED_STRING
5050
#endif
5151

5252
#define CHIP_DEVICE_CONFIG_TEST_MANUFACTURING_DATE CONFIG_CHIP_DEVICE_MANUFACTURING_DATE

0 commit comments

Comments
 (0)