diff options
author | Nava kishore Manne <nava.manne@xilinx.com> | 2022-05-16 21:03:24 +0530 |
---|---|---|
committer | Mark Hatle <mark.hatle@kernel.crashing.org> | 2022-07-23 15:59:49 -0500 |
commit | cb3b84c8ec03080e45195096cdbd1caf81829125 (patch) | |
tree | de977a33dfcf0aad741e6877436e25b9f5312c08 /meta-xilinx-core/recipes-bsp/libdfx | |
parent | 5565f1ed2b46918355c5809287a230f372164179 (diff) | |
download | meta-xilinx-cb3b84c8ec03080e45195096cdbd1caf81829125.tar.gz |
libdfx: Remove custom do_install() task
A top-level Makefile and install rules have been added
in the libdfx repo. This makes the custom do_install()
task obsolete. So this patch removes the do_install()
from libdfx bb file.
Signed-off-by: Nava kishore Manne <nava.manne@xilinx.com>
Signed-off-by: Mark Hatle <mhatle@xilinx.com>
(cherry picked from commit a64ff0bf015adcefbe691a94ac3e8ecf1a2ba911)
Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core/recipes-bsp/libdfx')
-rw-r--r-- | meta-xilinx-core/recipes-bsp/libdfx/libdfx_1.0.bb | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/meta-xilinx-core/recipes-bsp/libdfx/libdfx_1.0.bb b/meta-xilinx-core/recipes-bsp/libdfx/libdfx_1.0.bb index 02117dff..adf89c55 100644 --- a/meta-xilinx-core/recipes-bsp/libdfx/libdfx_1.0.bb +++ b/meta-xilinx-core/recipes-bsp/libdfx/libdfx_1.0.bb | |||
@@ -8,7 +8,7 @@ BRANCH ?= "xlnx_rel_v2022.1" | |||
8 | REPO ?= "git://github.com/Xilinx/libdfx.git;protocol=https" | 8 | REPO ?= "git://github.com/Xilinx/libdfx.git;protocol=https" |
9 | BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" | 9 | BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" |
10 | SRC_URI = "${REPO};${BRANCHARG}" | 10 | SRC_URI = "${REPO};${BRANCHARG}" |
11 | SRCREV = "f3c30294b96544081a64b054d4bc3db4ab8202b7" | 11 | SRCREV = "1a1454ed0c3a56912250182f591c051f355fbf47" |
12 | 12 | ||
13 | COMPATIBLE_MACHINE = "^$" | 13 | COMPATIBLE_MACHINE = "^$" |
14 | COMPATIBLE_MACHINE:zynqmp = "zynqmp" | 14 | COMPATIBLE_MACHINE:zynqmp = "zynqmp" |
@@ -18,13 +18,3 @@ S = "${WORKDIR}/git" | |||
18 | 18 | ||
19 | inherit cmake | 19 | inherit cmake |
20 | 20 | ||
21 | do_install () { | ||
22 | install -d ${D}${libdir} | ||
23 | install -d ${D}${includedir} | ||
24 | install -d ${D}${bindir} | ||
25 | oe_libinstall -so -C ${B}/src/ libdfx ${D}${libdir} | ||
26 | install -m 0644 ${B}/src/libdfx.a ${D}${libdir} | ||
27 | install -m 0644 ${B}/include/libdfx.h ${D}${includedir} | ||
28 | install -m 0755 ${B}/apps/dfx_app ${D}${bindir} | ||
29 | } | ||
30 | |||