diff options
author | Devarsh Thakkar | 2022-04-19 10:47:34 -0500 |
---|---|---|
committer | Ryan Eatmon | 2022-04-20 18:26:30 -0500 |
commit | 39fa0c1d3d020d5239c067e103e2f429ef0fcfc7 (patch) | |
tree | 4be8a8d15dafa0585b73e2f5f0c8a3c854f34de1 | |
parent | 299681899e5a0a292e290566fb2cc45c95b65a2b (diff) | |
download | meta-ti-39fa0c1d3d020d5239c067e103e2f429ef0fcfc7.tar.gz meta-ti-39fa0c1d3d020d5239c067e103e2f429ef0fcfc7.tar.xz meta-ti-39fa0c1d3d020d5239c067e103e2f429ef0fcfc7.zip |
u-boot-ti: Use SRCREV to get short commit ID
Due to recent security update in git, we are
not able to fetch revision currently using existing method:
https://github.blog/2022-04-12-git-security-vulnerability-announced/
So instead, use the SRCREV to parse the short commit ID
and set the UBOOT_LOCALVERSION variable.
Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | recipes-bsp/u-boot/u-boot-ti.inc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ti.inc b/recipes-bsp/u-boot/u-boot-ti.inc index 231b7647..cc775e2e 100644 --- a/recipes-bsp/u-boot/u-boot-ti.inc +++ b/recipes-bsp/u-boot/u-boot-ti.inc | |||
@@ -1,14 +1,6 @@ | |||
1 | # UBOOT_LOCALVERSION can be set to add a tag to the end of the | 1 | # UBOOT_LOCALVERSION can be set to add a tag to the end of the |
2 | # U-boot version string. such as the commit id | 2 | # U-boot version string. such as the commit id |
3 | def get_git_revision(p): | 3 | UBOOT_LOCALVERSION = "-g${@d.getVar("SRCREV", False).__str__()[:10]}" |
4 | import subprocess | ||
5 | |||
6 | try: | ||
7 | return subprocess.Popen("git rev-parse HEAD 2>/dev/null ", cwd=p, shell=True, stdout=subprocess.PIPE, universal_newlines=True).communicate()[0].rstrip() | ||
8 | except OSError: | ||
9 | return None | ||
10 | |||
11 | UBOOT_LOCALVERSION = "-g${@get_git_revision('${S}').__str__()[:10]}" | ||
12 | 4 | ||
13 | UBOOT_SUFFIX ?= "img" | 5 | UBOOT_SUFFIX ?= "img" |
14 | SPL_BINARY ?= "MLO" | 6 | SPL_BINARY ?= "MLO" |