Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx.inc
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ do_deploy:prepend() {
fi

# In ZynqMP u-boot.dtb is generated by default but not for versal, Hence manually deploy.
if [ "${SOC_FAMILY}" == "versal" ]; then
if [ -f ${B}/arch/arm/dts/${UBOOT_USER_SPECIFIED_DTS}.dtb ]; then
install -Dm 0644 ${B}/arch/arm/dts/${UBOOT_USER_SPECIFIED_DTS}.dtb ${DEPLOYDIR}/u-boot.dtb
if [ "${SOC_FAMILY}" = "versal" ]; then
if [ -f "${B}/arch/arm/dts/${UBOOT_USER_SPECIFIED_DTS}.dtb" ]; then
install -Dm 0644 "${B}/arch/arm/dts/${UBOOT_USER_SPECIFIED_DTS}.dtb" "${DEPLOYDIR}/u-boot.dtb"
fi
fi
}