diff options
author | Ryan Eatmon <reatmon@ti.com> | 2025-06-24 15:44:07 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-06-25 13:16:57 -0500 |
commit | a87dce507460de6c29a809d0345df6c79a47d595 (patch) | |
tree | 956947073d7d2782720e02e0cc4d2c085fb0720f | |
parent | 9d456e4908815ed4b0fdb04548c05d340fc9e431 (diff) | |
download | meta-ti-a87dce507460de6c29a809d0345df6c79a47d595.tar.gz |
meta-ti/all: set S from UNPACKDIR in recipes that fetch prebuilt files
There is no need to have two assignments; also setting S from
UNPACKDIR (and not vice versa) is more logical as unpack
task comes first, and tasks that come after unpack use S to access
unpack results.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/recipes-bsp/vis-fw/vis_01.50.07.15.bb | 3 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/devtools/ti-cgt-pru_2.3.3.bb | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/meta-ti-bsp/recipes-bsp/vis-fw/vis_01.50.07.15.bb b/meta-ti-bsp/recipes-bsp/vis-fw/vis_01.50.07.15.bb index c83b2145..ba320f5f 100644 --- a/meta-ti-bsp/recipes-bsp/vis-fw/vis_01.50.07.15.bb +++ b/meta-ti-bsp/recipes-bsp/vis-fw/vis_01.50.07.15.bb | |||
@@ -11,8 +11,7 @@ SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/vis/01_50_07_15/exp | |||
11 | SRC_URI[md5sum] = "fe8b00e398fb3b7ada0c15b601867acb" | 11 | SRC_URI[md5sum] = "fe8b00e398fb3b7ada0c15b601867acb" |
12 | SRC_URI[sha256sum] = "6e2aa47ae892910616ebdc96646af778af9a59ca0657716ab4fa4b24a9afae69" | 12 | SRC_URI[sha256sum] = "6e2aa47ae892910616ebdc96646af778af9a59ca0657716ab4fa4b24a9afae69" |
13 | 13 | ||
14 | S = "${WORKDIR}/sources" | 14 | S = "${UNPACKDIR}" |
15 | UNPACKDIR = "${S}" | ||
16 | 15 | ||
17 | DSPAPP = "dra7-dsp1-fw-radio.xe66" | 16 | DSPAPP = "dra7-dsp1-fw-radio.xe66" |
18 | GPPAPP = "RadioApp" | 17 | GPPAPP = "RadioApp" |
diff --git a/meta-ti-extras/recipes-ti/devtools/ti-cgt-pru_2.3.3.bb b/meta-ti-extras/recipes-ti/devtools/ti-cgt-pru_2.3.3.bb index f2f368b1..7ef20b7a 100644 --- a/meta-ti-extras/recipes-ti/devtools/ti-cgt-pru_2.3.3.bb +++ b/meta-ti-extras/recipes-ti/devtools/ti-cgt-pru_2.3.3.bb | |||
@@ -24,8 +24,7 @@ SRC_URI[cgt-pru-x86.sha256sum] = "1f1405167214f2c0ef848591b17a7799fdcd9f55f11bc9 | |||
24 | SRC_URI[cgt-pru-arm.md5sum] = "648a6d7d8162fd6a89f381c7b974e6b0" | 24 | SRC_URI[cgt-pru-arm.md5sum] = "648a6d7d8162fd6a89f381c7b974e6b0" |
25 | SRC_URI[cgt-pru-arm.sha256sum] = "8390cb77b46b728ce2940595b81406f76d86dfed58c21258e3206a7c1232ccf2" | 25 | SRC_URI[cgt-pru-arm.sha256sum] = "8390cb77b46b728ce2940595b81406f76d86dfed58c21258e3206a7c1232ccf2" |
26 | 26 | ||
27 | S = "${WORKDIR}/sources" | 27 | S = "${UNPACKDIR}" |
28 | UNPACKDIR = "${S}" | ||
29 | 28 | ||
30 | do_install() { | 29 | do_install() { |
31 | install -d ${D}${TI_CGT_PRU_INSTALL_DIR_RECIPE} | 30 | install -d ${D}${TI_CGT_PRU_INSTALL_DIR_RECIPE} |