diff options
author | Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> | 2024-08-11 17:20:50 -0600 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2024-08-14 08:55:58 -0500 |
commit | 71b3220c989da255581d29cf017a1e284241c77e (patch) | |
tree | 9909ff0192d82149fb42f183f43be96f4284c3dd | |
parent | 875460b28c4b8cd581128ec4f0ce792c711e6dac (diff) | |
download | meta-xilinx-71b3220c989da255581d29cf017a1e284241c77e.tar.gz |
libdfx_2024.2.bb: Add 2024.2 version libdfx recipe
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-core/recipes-bsp/libdfx/libdfx_2024.2.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-bsp/libdfx/libdfx_2024.2.bb b/meta-xilinx-core/recipes-bsp/libdfx/libdfx_2024.2.bb new file mode 100644 index 00000000..b4fdef4c --- /dev/null +++ b/meta-xilinx-core/recipes-bsp/libdfx/libdfx_2024.2.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Xilinx libdfx library" | ||
2 | DESCRIPTION = "Xilinx libdfx Library and headers" | ||
3 | |||
4 | LICENSE = "MIT & GPL-2.0-or-later" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=94aba86aec117f003b958a52f019f1a7" | ||
6 | |||
7 | BRANCH ?= "master" | ||
8 | REPO ?= "git://github.com/Xilinx/libdfx.git;protocol=https" | ||
9 | BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" | ||
10 | SRC_URI = "${REPO};${BRANCHARG}" | ||
11 | SRCREV = "c8275891ead62b3dfce68c00cf466715f0ac75f1" | ||
12 | |||
13 | # Don't allow building for Zynq and Microblaze MACHINE unless it is supported. | ||
14 | COMPATIBLE_MACHINE = "^$" | ||
15 | COMPATIBLE_MACHINE:zynqmp = ".*" | ||
16 | COMPATIBLE_MACHINE:versal = ".*" | ||
17 | COMPATIBLE_MACHINE:versal-net = ".*" | ||
18 | |||
19 | S = "${WORKDIR}/git" | ||
20 | |||
21 | inherit cmake | ||
22 | |||
23 | # Due to an update where the soname/version was defined, we need to use an RREPLACES | ||
24 | # so updates will work properly. | ||
25 | RREPLACES:${PN} = "libdfx" | ||