From e75c70e4db78afa8f5c5ec1790359ede5e8bf00e Mon Sep 17 00:00:00 2001 From: Varalaxmi Bingi Date: Wed, 27 Apr 2022 16:50:18 +0530 Subject: 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 Signed-off-by: Mark Hatle --- .../fpga-manager-script/fpga-manager-script_1.0.bb | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb (limited to 'meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb') 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 @@ +SUMMARY = "Install user script to support fpga-manager" +DESCRIPTION = "Install user script that loads and unloads overlays using kernel fpga-manager" +LICENSE = "Proprietary" +LIC_FILES_CHKSUM = "file://${WORKDIR}/fpgautil.c;beginline=1;endline=24;md5=8010e59a286b1e3a73a9fdd93bd18778" + +SRC_URI = "\ + file://fpgautil.c \ + " +S = "${WORKDIR}" + +FILESEXTRAPATHS:prepend := "${THISDIR}/files:" + +do_compile() { + ${CC} ${LDFLAGS} fpgautil.c -o fpgautil +} + +do_install() { + install -Dm 0755 ${S}/fpgautil ${D}${bindir}/fpgautil +} + +FILES:${PN} = "\ + ${bindir}/fpgautil \ + " -- cgit v1.2.3-54-g00ecf From 3912547c7ea7c4a08add44693412e8485c57f935 Mon Sep 17 00:00:00 2001 From: Sandeep Gundlupet Raju Date: Tue, 6 Sep 2022 23:03:05 -0600 Subject: fpga-manager-script: Update md5 checksum Signed-off-by: Sandeep Gundlupet Raju --- .../recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb') 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 index 416edf17..d22c995c 100644 --- 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 @@ -1,7 +1,7 @@ SUMMARY = "Install user script to support fpga-manager" DESCRIPTION = "Install user script that loads and unloads overlays using kernel fpga-manager" LICENSE = "Proprietary" -LIC_FILES_CHKSUM = "file://${WORKDIR}/fpgautil.c;beginline=1;endline=24;md5=8010e59a286b1e3a73a9fdd93bd18778" +LIC_FILES_CHKSUM = "file://${WORKDIR}/fpgautil.c;beginline=1;endline=24;md5=0c02eabf57dba52842c5df9b96bccfae" SRC_URI = "\ file://fpgautil.c \ -- cgit v1.2.3-54-g00ecf