summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb
diff options
context:
space:
mode:
authorVaralaxmi Bingi <varalaxmi.bingi@xilinx.com>2022-04-27 16:50:18 +0530
committerMark Hatle <mhatle@xilinx.com>2022-04-28 06:56:59 -0700
commite75c70e4db78afa8f5c5ec1790359ede5e8bf00e (patch)
tree3931638ed2a626865d3e353291425f42e81a7246 /meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb
parent9097f6a96da97bad6a688d0bee40f03423b21d7b (diff)
downloadmeta-xilinx-e75c70e4db78afa8f5c5ec1790359ede5e8bf00e.tar.gz
fpga-manager-script: adding this recipe to meta-xilinx
This fpgautil recipe was part of meta-xilinx-tools. This is required in decoupling flow as well till dfx mgr gets stabled and meta-xilinx-tools layer will no be there in decoupling flow. So moving this recipe to meta-xilinx. Signed-off-by: Varalaxmi Bingi <varalaxmi.bingi@xilinx.com> Signed-off-by: Mark Hatle <mhatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb')
-rw-r--r--meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb b/meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb
new file mode 100644
index 00000000..416edf17
--- /dev/null
+++ b/meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb
@@ -0,0 +1,23 @@
1SUMMARY = "Install user script to support fpga-manager"
2DESCRIPTION = "Install user script that loads and unloads overlays using kernel fpga-manager"
3LICENSE = "Proprietary"
4LIC_FILES_CHKSUM = "file://${WORKDIR}/fpgautil.c;beginline=1;endline=24;md5=8010e59a286b1e3a73a9fdd93bd18778"
5
6SRC_URI = "\
7 file://fpgautil.c \
8 "
9S = "${WORKDIR}"
10
11FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
12
13do_compile() {
14 ${CC} ${LDFLAGS} fpgautil.c -o fpgautil
15}
16
17do_install() {
18 install -Dm 0755 ${S}/fpgautil ${D}${bindir}/fpgautil
19}
20
21FILES:${PN} = "\
22 ${bindir}/fpgautil \
23 "