summaryrefslogtreecommitdiff
path: root/cxmanage/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cxmanage/__init__.py')
-rw-r--r--cxmanage/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/cxmanage/__init__.py b/cxmanage/__init__.py
index 50b760a..e2d416a 100644
--- a/cxmanage/__init__.py
+++ b/cxmanage/__init__.py
@@ -322,3 +322,16 @@ def _print_command_status(tasks, counter):
dots = "".join(["." for x in range(counter % 4)]).ljust(3)
sys.stdout.write(message % (successes, errors, nodes_left, dots))
sys.stdout.flush()
+
+
+# These are needed for ipinfo and whenever version information is printed
+COMPONENTS = [
+ ("ecme_version", "ECME version"),
+ ("cdb_version", "CDB version"),
+ ("stage2_version", "Stage2boot version"),
+ ("bootlog_version", "Bootlog version"),
+ ("a9boot_version", "A9boot version"),
+ ("uboot_version", "Uboot version"),
+ ("ubootenv_version", "Ubootenv version"),
+ ("dtb_version", "DTB version")
+]