@@ -16,13 +16,14 @@ There are two primary approaches for maintaining versioning:
16
16
* Utilizing a :file: `VERSION ` file as detailed on the :ref: `app-version-details ` page of the Zephyr Project documentation.
17
17
This method involves defining the version information in a specific file format.
18
18
19
- * Implementing dedicated Kconfig configurations.
20
- This approach uses Kconfig system configurations to set and manage the versioning details.
19
+ * Utilizing dedicated Kconfig configurations.
20
+ This approach uses Kconfig options to set and manage the versioning details.
21
21
22
22
Choose the approach that best aligns with your project requirements and infrastructure.
23
23
24
24
.. note ::
25
- These approaches should not be used simultaneously.
25
+ These approaches cannot be used simultaneously.
26
+ The Kconfig options for configuring the versioning details are unavailable if the :file: `VERSION ` file is present.
26
27
27
28
Using :file: `VERSION ` file
28
29
**************************
@@ -35,6 +36,7 @@ To implement versioning based on a :file:`VERSION` file, you must create a file
35
36
VERSION_MINOR =
36
37
PATCHLEVEL =
37
38
VERSION_TWEAK =
39
+ EXTRAVERSION =
38
40
39
41
.. note ::
40
42
You must assign a value to at least one of the variables.
@@ -48,13 +50,19 @@ For example:
48
50
VERSION_MINOR = 5
49
51
PATCHLEVEL = 99
50
52
VERSION_TWEAK = 0
53
+ EXTRAVERSION = dev
51
54
52
- A :file: `VERSION ` file is responsible for assigning values in the following format for:
55
+ The :file: `VERSION ` file is used to derive the firmware version in the following format for:
53
56
54
- * MCUboot version : ``MAJOR . MINOR . PATCHLEVEL + TWEAK ``.
55
- The above example would be formatted as ``2 . 5 . 99 + 0 ``.
56
- * Matter OTA: in the 32-bit integer where each variable is 8 bits long .
57
+ * MCUboot image : ``MAJOR. MINOR. PATCHLEVEL+ TWEAK ``.
58
+ The above example would be formatted as ``2.5.99+ 0 ``.
59
+ * Matter OTA image: 32-bit integer where each numeric variable is represented by 8 bits within the integer .
57
60
The above example would be formatted as ``0x02056300 ``.
61
+ * Informational purposes, for example displayed in the ecosystem applications:
62
+ * If ``EXTRAVERSION `` is non-empty: ``MAJOR.MINOR.PATCHLEVEL-EXTRA+TWEAK ``.
63
+ The above example would be formatted as ``2.5.99-dev+0 ``.
64
+ * Otherwise: ``MAJOR.MINOR.PATCHLEVEL+TWEAK ``.
65
+ The above example would be formatted as ``2.5.99+0 ``.
58
66
59
67
Using Kconfig options
60
68
*********************
0 commit comments