summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandolph Sapp <rs@ti.com>2022-09-02 15:12:47 -0500
committerRyan Eatmon <reatmon@ti.com>2022-09-07 09:58:14 -0500
commita765bbc359d319bd9859951bdd18fe60586ed14f (patch)
tree8e1cc02017694dc734cd046edd6059db7f333c9c
parent27641e1f2d7f6696fd7bbd8f24fcac20766b6234 (diff)
downloadmeta-ti-a765bbc359d319bd9859951bdd18fe60586ed14f.tar.gz
ti-sci-fw: Use d.getVar() in DEPENDS expression
Switch the DEPENDS_append expression to use d.getVar() instead of the usual variable expansion to prevent the inline Python command from becoming mangled. Signed-off-by: Randolph Sapp <rs@ti.com> Acked-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
index 3986af47..2a59e896 100644
--- a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
+++ b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bb
@@ -9,7 +9,7 @@ DEPENDS_remove_am65xx-hs-evm-k3r5-sr2 = " virtual/bootloader"
9DEPENDS_remove_j7-evm-k3r5 = " virtual/bootloader" 9DEPENDS_remove_j7-evm-k3r5 = " virtual/bootloader"
10DEPENDS_remove_j7-hs-evm-k3r5 = " virtual/bootloader" 10DEPENDS_remove_j7-hs-evm-k3r5 = " virtual/bootloader"
11DEPENDS_remove_j7-hs-evm-k3r5-sr1-1 = " virtual/bootloader" 11DEPENDS_remove_j7-hs-evm-k3r5-sr1-1 = " virtual/bootloader"
12DEPENDS_append = " ${@ '' if '${TI_SECURE_DEV_PKG_K3}' else 'ti-k3-secdev-native' }" 12DEPENDS_append = " ${@ '' if d.getVar('TI_SECURE_DEV_PKG_K3') else 'ti-k3-secdev-native' }"
13 13
14CLEANBROKEN = "1" 14CLEANBROKEN = "1"
15PR = "${INC_PR}.2" 15PR = "${INC_PR}.2"