summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb
diff options
context:
space:
mode:
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 "