summaryrefslogtreecommitdiff
path: root/conf/tdx_version.conf
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2017-11-16 18:03:18 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2017-12-22 02:05:25 +0100
commit6f88e04ccae8d5b9ac7f1a1533b8d1669b246c8c (patch)
tree42dac7a38379ca1f1b7294752ba7a663dc96c670 /conf/tdx_version.conf
parentf709c644af9ba0d2842eb265f3327fbbbad4265a (diff)
tdx_version: adapt variable names to versioning rework
The terms external and internal version has been changed to package and item version. Use variable names to reflect that. TDX_VER_EXT -> TDX_VER_PACKAGE TDX_VER_EXT_MIN -> TDX_VER_PACKAGE_MIN TDX_VER_INT -> TDX_VER_ITEM While at it fix spelling in TDX_VER_MINOR (only used within the file). Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'conf/tdx_version.conf')
-rw-r--r--conf/tdx_version.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf/tdx_version.conf b/conf/tdx_version.conf
index c59b55e..1612db4 100644
--- a/conf/tdx_version.conf
+++ b/conf/tdx_version.conf
@@ -1,13 +1,13 @@
# These variables are used to set image, kernel and U-Boot versions
TDX_VERMAJOR = "2"
-TDX_VERMINIOR = "8"
+TDX_VERMINOR = "8"
TDX_VERBETA = "b1"
TDX_VERPATCH = "1"
TDX_VERNIGHTLY ?= ""
TDX_VERDATE ?= "-${DATE}"
TDX_VERDATE[vardepsexclude] = "DATE"
-TDX_VER_EXT = "${TDX_VERMAJOR}.${TDX_VERMINIOR}${TDX_VERBETA}${TDX_VERNIGHTLY}${TDX_VERDATE}"
-TDX_VER_EXT_MIN = "${TDX_VERMAJOR}.${TDX_VERMINIOR}${TDX_VERBETA}${TDX_VERNIGHTLY}"
-TDX_VER_INT = "${TDX_VERMAJOR}.${TDX_VERMINIOR}.${TDX_VERPATCH}"
+TDX_VER_PACKAGE_MIN = "${TDX_VERMAJOR}.${TDX_VERMINOR}${TDX_VERBETA}${TDX_VERNIGHTLY}"
+TDX_VER_PACKAGE = "${TDX_VER_PACKAGE_MIN}${TDX_VERDATE}"
+TDX_VER_ITEM = "${TDX_VERMAJOR}.${TDX_VERMINOR}.${TDX_VERPATCH}"