summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core
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-02-04 13:35:23 -0800
commite71f4b9e96a4389fe0ac76375894e5c56b4e0e02 (patch)
tree1b2a8c1fa934372e7f7eafdbb22603bc93aa4de5 /meta-xilinx-core
parent395f0c537ce300f172be11364c23ef03eb7de312 (diff)
downloadmeta-xilinx-e71f4b9e96a4389fe0ac76375894e5c56b4e0e02.tar.gz
pmufw: Fix dependency variable typo
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core')
-rw-r--r--meta-xilinx-core/recipes-bsp/embeddedsw/pmufw.bb2
1 files changed, 1 insertions, 1 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