summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental
diff options
context:
space:
mode:
authorAppana Durga Kedareswara rao <appana.durga.rao@xilinx.com>2022-04-29 12:38:54 +0530
committerMark Hatle <mhatle@xilinx.com>2022-05-02 10:36:18 -0700
commit69add411db616dd0f3be54a6faa1749674bc6e47 (patch)
tree28c6867b21cca4335ee9fd294f8ee0c16462ac8c /meta-xilinx-standalone-experimental
parent00058c1442a59632e89ec7aace110bb09747387c (diff)
downloadmeta-xilinx-69add411db616dd0f3be54a6faa1749674bc6e47.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>
Diffstat (limited to 'meta-xilinx-standalone-experimental')
-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