blob: 4c9164283048637e0c4949d28dcf7beac6ad6b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
DESCRIPTION = "LoRa Gateway library"
HOMEPAGE = "https://github.com/Lora-net/lora_gateway"
PRIORITY = "optional"
SECTION = "console/utils"
# Semtech license is a modified BSD-style license
LICENSE = "SEMTECH"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a2bdef95625509f821ba00460e3ae0eb"
DEPENDS = ""
PR = "r4"
SRCREV = "v${PV}"
SRC_URI = "git://github.com/Lora-net/lora_gateway.git;protocol=git \
file://lora-gateway-add-fpga-version-28.patch \
file://library_4.0.cfg \
"
SRC_URI[md5sum] = "9e06a3733a9fea39a3d61f77b412badf"
SRC_URI[sha256sum] = "28fbfe098013908794b32e51d1fed4427f20dd6c8adbbca78df2e1800f5c84dc"
S = "${WORKDIR}/git"
CFLAGS += "-Iinc -I."
do_configure_append() {
# copy over custom library_4.0.cfg
cp ${WORKDIR}/library_4.0.cfg ${S}/libloragw/library.cfg
}
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}${includedir}/lora
install -d ${D}${libdir}/lora
install -m 0644 libloragw/libloragw.a ${D}${libdir}/lora
install -m 0644 libloragw/library.cfg ${D}${libdir}/lora
install -m 0644 libloragw/inc/* ${D}${includedir}/lora
install -m 0644 libloragw/readme.md ${D}${libdir}/lora
install -d ${D}/opt/lora/gateway-utils
install -m 0755 libloragw/test_* ${D}/opt/lora/gateway-utils/
install -m 0755 util_pkt_logger/util_pkt_logger ${D}/opt/lora/gateway-utils/
install -m 0755 util_spectral_scan/util_spectral_scan ${D}/opt/lora/gateway-utils/
install -m 0755 util_spi_stress/util_spi_stress ${D}/opt/lora/gateway-utils/
install -m 0755 util_tx_test/util_tx_test ${D}/opt/lora/gateway-utils/
}
PACKAGES += "${PN}-utils ${PN}-utils-dbg"
FILES_${PN}-utils = "/opt/lora/gateway-utils/*"
FILES_${PN}-utils-dbg = "/opt/lora/gateway-utils/.debug"
FILES_${PN}-dev = "${includedir}/lora ${libdir}/lora/library.cfg"
FILES_${PN}-staticdev = "${libdir}/lora/libloragw.a"
# disable this on purpose for dev purposes
do_rm_work() {
echo "skipping"
}
|