blob: f7eaa1116c6d4610a09a7fb224f146fe275845b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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://fpgautil.c;beginline=1;endline=24;md5=0dbf04c2c1026b3d120136e728b7a09f"
SRC_URI = "\
file://fpgautil.c \
"
S = "${UNPACKDIR}"
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 \
"
|