Merge "docs: add TF-A version numbering information" into integration

This commit is contained in:
Olivier Deprez 2023-11-06 13:51:33 +01:00 committed by TrustedFirmware Code Review
commit 29683ef78f
2 changed files with 13 additions and 1 deletions

View file

@ -9,7 +9,7 @@
#
VERSION_MAJOR := 2
VERSION_MINOR := 9
VERSION_PATCH := 0
VERSION_PATCH := 0 # Only used for LTS releases
VERSION := ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}
# Default goal is build all images

View file

@ -25,6 +25,18 @@ issues found, additional release candidates may be created to fix the issues.
code freeze ver w.x code freeze ver y.z
Version numbering
~~~~~~~~~~~~~~~~~
TF-A version is given in Makefile, through several macros:
- VERSION_MAJOR
- VERSION_MINOR
- VERSION_PATCH
For example, TF-A v2.10 has VERSION_MAJOR=2, VERSION_MINOR=10 and VERSION_PATCH=0.
This VERSION_PATCH macro is only increased for LTS releases.
Upcoming Releases
~~~~~~~~~~~~~~~~~