diff options
Diffstat (limited to 'classes')
-rw-r--r-- | classes/ti-pdk-fetch.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/ti-pdk-fetch.bbclass b/classes/ti-pdk-fetch.bbclass index 117e54fa..d4c32ab7 100644 --- a/classes/ti-pdk-fetch.bbclass +++ b/classes/ti-pdk-fetch.bbclass | |||
@@ -3,7 +3,7 @@ TI_PDK_GIT_BRANCH ?= "release/PROCESSOR-SDK_06.02.00" | |||
3 | TI_PDK_GIT_PROTOCOL ?= "git" | 3 | TI_PDK_GIT_PROTOCOL ?= "git" |
4 | TI_PDK_SRCREV ?= "2357d1436f1b2c3b5f1d0c9c94e045d33b63f3fe" | 4 | TI_PDK_SRCREV ?= "2357d1436f1b2c3b5f1d0c9c94e045d33b63f3fe" |
5 | 5 | ||
6 | TI_PDK_VERSION ?= "2019.12.2" | 6 | TI_PDK_VERSION ?= "2019.12.3" |
7 | 7 | ||
8 | PV = "${TI_PDK_VERSION}" | 8 | PV = "${TI_PDK_VERSION}" |
9 | 9 | ||
@@ -32,6 +32,9 @@ python do_unpack_append() { | |||
32 | 32 | ||
33 | # Recursively hard-link the sources | 33 | # Recursively hard-link the sources |
34 | shutil.copytree(src, s, copy_function=os.link) | 34 | shutil.copytree(src, s, copy_function=os.link) |
35 | |||
36 | # Recursively hard-link the git directory | ||
37 | shutil.copytree(os.path.join(d.getVar('TI_PDK_SOURCE'),'.git'), os.path.join(s,'.git'), copy_function=os.link) | ||
35 | } | 38 | } |
36 | 39 | ||
37 | # Make sure that ti-pdk-source is unpacked before we set up the hardlinks. | 40 | # Make sure that ti-pdk-source is unpacked before we set up the hardlinks. |