Skip to content
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

meta-xilinx-bsp: Update checksums of kc705 reference design download #38

Closed
wants to merge 1 commit into from
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ inherit xilinx-fetch-restricted
BSP_NAME = "xilinx-kc705"
BSP_FILE = "${BSP_NAME}-v${PV}-final.bsp"
SRC_URI = "https://www.xilinx.com/member/forms/download/xef.html?filename=${BSP_FILE};downloadfilename=${BSP_FILE}"
SRC_URI[md5sum] = "5c0365a8a26cc27b4419aa1d7dd82351"
SRC_URI[sha256sum] = "a909a91a37a9925ee2f972ccb10f986a26ff9785c1a71a483545a192783bf773"
SRC_URI[md5sum] = "91f88474c2d492558bcabf3d73a66332"
SRC_URI[sha256sum] = "880c38670b24a5bcce5de0cfdb176ffaf2cb260b6f03b239450a16cf0a6c2fc2"

PROVIDES = "virtual/bitstream"

Expand All @@ -31,7 +31,7 @@ DEPENDS += "tar-native gzip-native"

do_compile() {
# Extract the bitstream into workdir
tar -xf ${WORKDIR}/${BSP_FILE} ${BSP_NAME}-axi-full-${PV}/pre-built/linux/images/download.bit -C ${S}
tar -xf ${WORKDIR}/${BSP_FILE} ${BSP_NAME}-${PV}/pre-built/linux/images/download.bit -C ${S}
# move the bit file to ${S}/ as it is in a subdir in the tar file
for i in $(find -type f -name download.bit); do mv $i ${S}; done
}
Expand Down