summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@xilinx.com>2022-01-25 20:14:29 -0800
committerMark Hatle <mark.hatle@xilinx.com>2022-01-25 20:14:29 -0800
commitbcd9ae7ae3f0840a48d78c28e5de2cbe7d5b26a5 (patch)
tree3e7a737585d7b94553fa9399b7ae726e4b47ba90
parent0feb85f2371786770a6a7108efa698d7084706e9 (diff)
downloadmeta-xilinx-bcd9ae7ae3f0840a48d78c28e5de2cbe7d5b26a5.tar.gz
pmufw: Fix dependency variable typo
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
-rw-r--r--meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb2
-rw-r--r--meta-xilinx-standalone/recipes-bsp/embeddedsw/pmufw.bbappend2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb b/meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb
index 80eade19..53bdc416 100644
--- a/meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb
+++ b/meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb
@@ -60,7 +60,7 @@ FILES:${PN} = "/boot/${PN}.elf"
60 60
61def check_pmu_vars(d): 61def check_pmu_vars(d):
62 # If both are blank, the user MUST pass in the path to the firmware! 62 # If both are blank, the user MUST pass in the path to the firmware!
63 if not d.getVar('PMU_FIRMWARE_DEPENDS') and not d.getVar('PMU_FIRMWARE_MCDEPENDS'): 63 if not d.getVar('PMU_DEPENDS') and not d.getVar('PMU_MCDEPENDS'):
64 # Don't cache this, as the items on disk can change! 64 # Don't cache this, as the items on disk can change!
65 d.setVar('BB_DONT_CACHE', '1') 65 d.setVar('BB_DONT_CACHE', '1')
66 66
diff --git a/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmufw.bbappend b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmufw.bbappend
index 663134c4..241da1d0 100644
--- a/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmufw.bbappend
+++ b/meta-xilinx-standalone/recipes-bsp/embeddedsw/pmufw.bbappend
@@ -4,7 +4,7 @@ require ${PMUFW_INC}
4 4
5def check_pmu_vars(d): 5def check_pmu_vars(d):
6 # If both are blank, the user MUST pass in the path to the firmware! 6 # If both are blank, the user MUST pass in the path to the firmware!
7 if not d.getVar('PMU_FIRMWARE_DEPENDS') and not d.getVar('PMU_FIRMWARE_MCDEPENDS'): 7 if not d.getVar('PMU_DEPENDS') and not d.getVar('PMU_MCDEPENDS'):
8 # Don't cache this, as the items on disk can change! 8 # Don't cache this, as the items on disk can change!
9 d.setVar('BB_DONT_CACHE', '1') 9 d.setVar('BB_DONT_CACHE', '1')
10 10