summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental/recipes-bsp
diff options
context:
space:
mode:
authorAppana Durga Kedareswara rao <appana.durga.rao@xilinx.com>2022-04-29 12:38:54 +0530
committerMark Hatle <mark.hatle@kernel.crashing.org>2022-07-23 15:59:49 -0500
commit8066426f10e9b76e0db48ce5fb0f0314e121e90f (patch)
tree462790d5dbc620f670a14a5c6245f1079d354d7a /meta-xilinx-standalone-experimental/recipes-bsp
parentba3a36e48ffba8c2d92609449527456ba380ea03 (diff)
downloadmeta-xilinx-8066426f10e9b76e0db48ce5fb0f0314e121e90f.tar.gz
meta-xilinx-standalone-experimental: recipes-bsp: embeddedsw: fsbl-firmware: Copy psu_init file before do_configure task
With recent changes in fsbl application, fsbl CMakeList is expecting psu_init.h file to be avaible before do_configure stage, This commit updates the recipe for the same. Signed-off-by: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com> Signed-off-by: Mark Hatle <mhatle@xilinx.com> (cherry picked from commit 69add411db616dd0f3be54a6faa1749674bc6e47) Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone-experimental/recipes-bsp')
-rw-r--r--meta-xilinx-standalone-experimental/recipes-bsp/embeddedsw/fsbl-firmware_git.bbappend2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-bsp/embeddedsw/fsbl-firmware_git.bbappend b/meta-xilinx-standalone-experimental/recipes-bsp/embeddedsw/fsbl-firmware_git.bbappend
index 330f0ead..43dcc106 100644
--- a/meta-xilinx-standalone-experimental/recipes-bsp/embeddedsw/fsbl-firmware_git.bbappend
+++ b/meta-xilinx-standalone-experimental/recipes-bsp/embeddedsw/fsbl-firmware_git.bbappend
@@ -37,7 +37,7 @@ python() {
37 d.prependVar('FILESEXTRAPATHS', '%s:' % psu_init_path) 37 d.prependVar('FILESEXTRAPATHS', '%s:' % psu_init_path)
38} 38}
39 39
40do_compile:prepend() { 40do_configure:prepend() {
41 if [ -e ${WORKDIR}/psu_init.c ]; then 41 if [ -e ${WORKDIR}/psu_init.c ]; then
42 install -m 0644 ${WORKDIR}/psu_init.c ${S}/${ESW_COMPONENT_SRC} 42 install -m 0644 ${WORKDIR}/psu_init.c ${S}/${ESW_COMPONENT_SRC}
43 else 43 else