diff options
author | Varalaxmi Bingi <varalaxmi.bingi@xilinx.com> | 2022-04-27 16:50:18 +0530 |
---|---|---|
committer | Mark Hatle <mhatle@xilinx.com> | 2022-04-28 06:56:59 -0700 |
commit | e75c70e4db78afa8f5c5ec1790359ede5e8bf00e (patch) | |
tree | 3931638ed2a626865d3e353291425f42e81a7246 /meta-xilinx-core/recipes-bsp/fpga-manager-script/fpga-manager-script_1.0.bb | |
parent | 9097f6a96da97bad6a688d0bee40f03423b21d7b (diff) | |
download | meta-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.bb | 23 |
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 @@ | |||
1 | SUMMARY = "Install user script to support fpga-manager" | ||
2 | DESCRIPTION = "Install user script that loads and unloads overlays using kernel fpga-manager" | ||
3 | LICENSE = "Proprietary" | ||
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/fpgautil.c;beginline=1;endline=24;md5=8010e59a286b1e3a73a9fdd93bd18778" | ||
5 | |||
6 | SRC_URI = "\ | ||
7 | file://fpgautil.c \ | ||
8 | " | ||
9 | S = "${WORKDIR}" | ||
10 | |||
11 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" | ||
12 | |||
13 | do_compile() { | ||
14 | ${CC} ${LDFLAGS} fpgautil.c -o fpgautil | ||
15 | } | ||
16 | |||
17 | do_install() { | ||
18 | install -Dm 0755 ${S}/fpgautil ${D}${bindir}/fpgautil | ||
19 | } | ||
20 | |||
21 | FILES:${PN} = "\ | ||
22 | ${bindir}/fpgautil \ | ||
23 | " | ||