Skip to content

Commit 2516d5e

Browse files
Ravi PatelMeena Paleti
authored andcommitted
sw_apps: versal_psmfw: Update copy bsp script
There is a warning for "omitting copy of directory" as -r option was not used. As such there is no need to copy subdirectory, but to avoid warning use "cp -r". Signed-off-by: Ravi Patel <[email protected]> Acked-by: Amanda Nicole Baze <[email protected]>
1 parent 1c1965c commit 2516d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sw_apps/versal_psmfw/misc/copy_bsp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ else
4444
fi
4545

4646
# copy bsp standalone code
47-
cp $STANDALONE_DIR/common/* $BSP_DIR/libsrc/standalone/src/
47+
cp -r $STANDALONE_DIR/common/* $BSP_DIR/libsrc/standalone/src/
4848
cp $STANDALONE_DIR/microblaze/* $BSP_DIR/libsrc/standalone/src/
4949
cp -r $STANDALONE_DIR/profile $BSP_DIR/libsrc/standalone/src/
5050
cp $WORKING_DIR/bspconfig.h $BSP_DIR/libsrc/standalone/src/

0 commit comments

Comments
 (0)