diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 13:54:05 -0600 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 13:54:05 -0600 |
| commit | 1241013c7bce4262a6128eb4ccb3db410831746d (patch) | |
| tree | da79ab94a5b4ae9abf6211d8289a4bf5dbdcde9f /meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb | |
| parent | 6e3a214d268c7d75a42a9a329b5621fb5a49a89a (diff) | |
| parent | 10531c26195f97f9565e9770c21977805e53c46b (diff) | |
| download | meta-xilinx-1241013c7bce4262a6128eb4ccb3db410831746d.tar.gz | |
Merge remote-tracking branch 'origin/scarthgap' into yocto-master
This moves the system to scarthgap. It is known to NOT work with Styhead and master,
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb')
| -rw-r--r-- | meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb new file mode 100644 index 00000000..e183b853 --- /dev/null +++ b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | SUMMARY = "Linux dfeofdm library" | ||
| 2 | SECTION = "libdfeofdm" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | |||
| 5 | inherit pkgconfig xlnx-embeddedsw features_check | ||
| 6 | |||
| 7 | REQUIRED_MACHINE_FEATURES = "rfsoc" | ||
| 8 | |||
| 9 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
| 10 | |||
| 11 | S = "${WORKDIR}/git" | ||
| 12 | |||
| 13 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 14 | |||
| 15 | DEPENDS = "libmetal" | ||
| 16 | |||
| 17 | PROVIDES = "libdfeofdm" | ||
| 18 | |||
| 19 | DFEOFDM_SUBDIR = "XilinxProcessorIPLib/drivers/dfeofdm/src" | ||
| 20 | |||
| 21 | do_compile:prepend() { | ||
| 22 | cd ${S}/${DFEOFDM_SUBDIR} | ||
| 23 | cp Makefile.Linux Makefile | ||
| 24 | } | ||
| 25 | |||
| 26 | do_install() { | ||
| 27 | install -d ${D}${libdir} | ||
| 28 | install -d ${D}${includedir} | ||
| 29 | |||
| 30 | cd ${S}/${DFEOFDM_SUBDIR} | ||
| 31 | oe_libinstall -so libdfeofdm ${D}${libdir} | ||
| 32 | install -m 0644 xdfeofdm_hw.h ${D}${includedir}/xdfeofdm_hw.h | ||
| 33 | install -m 0644 xdfeofdm.h ${D}${includedir}/xdfeofdm.h | ||
| 34 | } | ||
| 35 | |||
| 36 | FILES:${PN} = "${libdir}/*.so.*" | ||
| 37 | FILES:${PN}-dev = "${libdir}/*.so ${includedir}/*" | ||
