diff options
author | Brandon Bayer <bbayer@multitech.com> | 2016-09-09 14:47:07 -0500 |
---|---|---|
committer | Brandon Bayer <bbayer@multitech.com> | 2016-09-13 10:11:57 -0500 |
commit | 22715646980f87f5ab5f70e2522525efa2f5f817 (patch) | |
tree | 844bf03d92284205f09f105e905d3c491962745f /recipes-connectivity/lora/lora-gateway_1.7.0mts.bb | |
parent | 94a186c4260f71bd15127fb3a2388239fd1cfca4 (diff) | |
download | meta-mlinux-22715646980f87f5ab5f70e2522525efa2f5f817.tar.gz meta-mlinux-22715646980f87f5ab5f70e2522525efa2f5f817.tar.bz2 meta-mlinux-22715646980f87f5ab5f70e2522525efa2f5f817.zip |
picocell:feat: add recipe for semtech lora-gateway 4.0.1
Diffstat (limited to 'recipes-connectivity/lora/lora-gateway_1.7.0mts.bb')
-rw-r--r-- | recipes-connectivity/lora/lora-gateway_1.7.0mts.bb | 60 |
1 files changed, 56 insertions, 4 deletions
diff --git a/recipes-connectivity/lora/lora-gateway_1.7.0mts.bb b/recipes-connectivity/lora/lora-gateway_1.7.0mts.bb index d032f62..13cffd8 100644 --- a/recipes-connectivity/lora/lora-gateway_1.7.0mts.bb +++ b/recipes-connectivity/lora/lora-gateway_1.7.0mts.bb @@ -1,7 +1,59 @@ -require lora-gateway.inc - +DESCRIPTION = "LoRa Gateway library" +HOMEPAGE = "https://www.semtech.com/" +PRIORITY = "optional" +SECTION = "console/utils" +# Semtech license is a modified BSD-style license +LICENSE = "SEMTECH" +LIC_FILES_CHKSUM = "file://LICENSE;md5=a2bdef95625509f821ba00460e3ae0eb" +DEPENDS = "libftdi libmpsse libusb1" +INC_PR = "r9" PR = "${INC_PR}.1" - -SRCREV = "631dfedf1b535b6c3861d3c3868e02f48a84fb06" BRANCH = "1.7.0-mts" +SRCREV = "631dfedf1b535b6c3861d3c3868e02f48a84fb06" + +SRC_URI = "git://git.multitech.net/lora_gateway;protocol=git;branch=${BRANCH} \ + file://lora-gateway-debug.patch \ + file://lora-gateway-sync-word.patch \ + file://library.cfg \ + " + +S = "${WORKDIR}/git" + +CFLAGS += "-Iinc -I. -DLIBFTDI1=1" + +do_configure_append() { + # copy over custom library.cfg + cp ${WORKDIR}/library.cfg ${S}/libloragw/ +} + +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 -d ${D}/opt/lora + install -m 0755 libloragw/test_* ${D}/opt/lora/ + install -m 0755 util_pkt_logger/util_pkt_logger ${D}/opt/lora/ + install -m 0755 util_band_survey/util_band_survey ${D}/opt/lora/ + install -m 0755 util_spi_stress/util_spi_stress ${D}/opt/lora/ + install -m 0755 util_tx_test/util_tx_test ${D}/opt/lora/ +} + +PACKAGES += "${PN}-utils ${PN}-utils-dbg" + +FILES_${PN}-utils = "/opt/lora/*" +FILES_${PN}-utils-dbg = "/opt/lora/.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" +} |