aboutsummaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone/recipes-bsp/embeddedsw/embeddedsw/zynqmp_pmufw-fixup.patch
blob: 50ce7bcb04e73736fd22ab306c2779f937fc5066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Fix incorrect copy that triggers a failure:

| cp: -r not specified; omitting directory '../misc/../../../../lib/bsp/standalone/src/common/clocking'

Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>

diff --git a/lib/sw_apps/zynqmp_pmufw/misc/copy_bsp.sh b/lib/sw_apps/zynqmp_pmufw/misc/copy_bsp.sh
index be8616968e..c3eca3f092 100755
--- a/lib/sw_apps/zynqmp_pmufw/misc/copy_bsp.sh
+++ b/lib/sw_apps/zynqmp_pmufw/misc/copy_bsp.sh
@@ -84,7 +84,7 @@ cp -r $BSP_DIR/libsrc/xilskey/src/include/*.h $BSP_DIR/include/
 BSP_SEQUENTIAL_MAKEFILES="$BSP_SEQUENTIAL_MAKEFILES $BSP_DIR/libsrc/xilskey/src/Makefile"
 
 # copy bsp standalone code
-cp  $STANDALONE_DIR/common/*  $BSP_DIR/libsrc/standalone/src/
+cp -r $STANDALONE_DIR/common/*  $BSP_DIR/libsrc/standalone/src/
 cp  $STANDALONE_DIR/microblaze/*  $BSP_DIR/libsrc/standalone/src/
 cp -r $STANDALONE_DIR/profile  $BSP_DIR/libsrc/standalone/src/
 cp  $WORKING_DIR/bspconfig.h  $BSP_DIR/include