diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2023-03-03 16:12:11 -0600 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2023-03-05 10:24:00 -0600 |
| commit | 7e6492b0ecbdf86d086ef59dc9dfdb025fbd4ecf (patch) | |
| tree | d5a5e94d2bdd6d03761dfc148dc901f58f407936 /meta-xilinx-bsp | |
| parent | 89230e1ed6f5dfe637213f6bb9d4251b83d4dafe (diff) | |
| download | meta-xilinx-7e6492b0ecbdf86d086ef59dc9dfdb025fbd4ecf.tar.gz | |
Remove obsolete 2022 versions
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-bsp')
| -rw-r--r-- | meta-xilinx-bsp/recipes-bsp/reference-design/kc705-bitstream_2022.1.bb | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/meta-xilinx-bsp/recipes-bsp/reference-design/kc705-bitstream_2022.1.bb b/meta-xilinx-bsp/recipes-bsp/reference-design/kc705-bitstream_2022.1.bb deleted file mode 100644 index e512777c..00000000 --- a/meta-xilinx-bsp/recipes-bsp/reference-design/kc705-bitstream_2022.1.bb +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | SUMMARY = "KC705 Pre-built Bitstream" | ||
| 2 | DESCRIPTION = "A Pre-built bitstream for the KC705, which is capable of booting a Linux system." | ||
| 3 | HOMEPAGE = "http://www.xilinx.com" | ||
| 4 | SECTION = "bsp" | ||
| 5 | |||
| 6 | # The BSP package does not include any license information. | ||
| 7 | LICENSE = "Proprietary" | ||
| 8 | LICENSE_FLAGS = "xilinx" | ||
| 9 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Proprietary;md5=0557f9d92cf58f2ccdd50f62f8ac0b28" | ||
| 10 | |||
| 11 | COMPATIBLE_MACHINE = "kc705-microblazeel" | ||
| 12 | |||
| 13 | inherit deploy | ||
| 14 | inherit xilinx-fetch-restricted | ||
| 15 | |||
| 16 | BSP_NAME = "xilinx-kc705" | ||
| 17 | BSP_FILE = "${BSP_NAME}-v${PV}-final.bsp" | ||
| 18 | SRC_URI = "https://www.xilinx.com/member/forms/download/xef.html?filename=${BSP_FILE};downloadfilename=${BSP_FILE}" | ||
| 19 | SRC_URI[md5sum] = "5c0365a8a26cc27b4419aa1d7dd82351" | ||
| 20 | SRC_URI[sha256sum] = "a909a91a37a9925ee2f972ccb10f986a26ff9785c1a71a483545a192783bf773" | ||
| 21 | |||
| 22 | PROVIDES = "virtual/bitstream" | ||
| 23 | |||
| 24 | FILES:${PN} += "/boot/download.bit" | ||
| 25 | |||
| 26 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 27 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 28 | |||
| 29 | # deps needed to extract content from the .bsp file | ||
| 30 | DEPENDS += "tar-native gzip-native" | ||
| 31 | |||
| 32 | do_compile() { | ||
| 33 | # Extract the bitstream into workdir | ||
| 34 | tar -xf ${WORKDIR}/${BSP_FILE} ${BSP_NAME}-axi-full-${PV}/pre-built/linux/images/download.bit -C ${S} | ||
| 35 | # move the bit file to ${S}/ as it is in a subdir in the tar file | ||
| 36 | for i in $(find -type f -name download.bit); do mv $i ${S}; done | ||
| 37 | } | ||
| 38 | |||
| 39 | do_install() { | ||
| 40 | install -D ${S}/download.bit ${D}/boot/download.bit | ||
| 41 | } | ||
| 42 | |||
| 43 | do_deploy () { | ||
| 44 | install -D ${S}/download.bit ${DEPLOYDIR}/download.bit | ||
| 45 | } | ||
| 46 | |||
| 47 | addtask deploy before do_build after do_install | ||
| 48 | |||
