Skip to content
Snippets Groups Projects
Commit 95fd2cd1 authored by David Sidrane's avatar David Sidrane Committed by Lorenz Meier
Browse files

Create NuttX git hash and tag

parent f66f024e
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ from __future__ import print_function
import sys
import subprocess
import re
filename = sys.argv[1]
......@@ -16,6 +17,11 @@ git_tag = subprocess.check_output('git describe --always --tags'.split(),
stderr=subprocess.STDOUT).decode('utf-8').strip()
git_version = subprocess.check_output('git rev-parse --verify HEAD'.split(),
stderr=subprocess.STDOUT).decode('utf-8').strip()
nuttx_git_tag = subprocess.check_output('git describe --always --tags'.split(),
cwd='NuttX/nuttx', stderr=subprocess.STDOUT).decode('utf-8').strip().replace("nuttx-","v")
nuttx_git_tag = re.sub('-.*','.0',nuttx_git_tag)
nuttx_git_version = subprocess.check_output('git rev-parse --verify HEAD'.split(),
cwd='NuttX/nuttx', stderr=subprocess.STDOUT).decode('utf-8').strip()
git_version_short = git_version[0:16]
# Generate the header file content
......@@ -26,9 +32,13 @@ header = """
#define PX4_GIT_VERSION_STR "{git_version}"
#define PX4_GIT_VERSION_BINARY 0x{git_version_short}
#define PX4_GIT_TAG_STR "{git_tag}"
#define NUTTX_GIT_VERSION_STR "{nuttx_git_version}"
#define NUTTX_GIT_TAG_STR "{nuttx_git_tag}"
""".format(git_tag=git_tag,
git_version=git_version,
git_version_short=git_version_short)
git_version_short=git_version_short,
nuttx_git_version=nuttx_git_version,
nuttx_git_tag=nuttx_git_tag)
if old_header != header:
print('Updating header {}'.format(sys.argv[1]))
......
......@@ -190,7 +190,7 @@ uint32_t px4_os_version(void)
#elif defined(__PX4_QURT)
return 0; //TODO: implement version for QuRT
#elif defined(__PX4_NUTTX)
return version_tag_to_number("v7.18.0"); //TODO: get correct version
return version_tag_to_number(NUTTX_GIT_TAG_STR);
#else
# error "px4_os_version not implemented for current OS"
#endif
......@@ -199,7 +199,7 @@ uint32_t px4_os_version(void)
const char *px4_os_version_string(void)
{
#if defined(__PX4_NUTTX)
return NULL; //TODO: get NuttX git tag as string
return NUTTX_GIT_VERSION_STR;
#else
return NULL;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment