Skip to content

u-boot-xlnx: Avoid breaking compatibility with posix sh #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: langdale-next
Choose a base branch
from
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
}