diff options
author | Jesse Gilles <jgilles@multitech.com> | 2015-05-22 14:47:15 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2015-05-22 14:47:15 -0500 |
commit | bfd5846c53d528c16a875f5b2469e1d29381763e (patch) | |
tree | 8182631bb580d0a05c05624b7e8a736f4ec983c6 /recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb | |
parent | 2fe4b3bfcaef7164f8890d4eec58450e7271b639 (diff) | |
download | meta-mlinux-bfd5846c53d528c16a875f5b2469e1d29381763e.tar.gz meta-mlinux-bfd5846c53d528c16a875f5b2469e1d29381763e.tar.bz2 meta-mlinux-bfd5846c53d528c16a875f5b2469e1d29381763e.zip |
add recipes for initial LoRa support for MTAC-LORA
Diffstat (limited to 'recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb')
-rw-r--r-- | recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb b/recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb new file mode 100644 index 0000000..56fdbe6 --- /dev/null +++ b/recipes-connectivity/lora/lora-packet-forwarder_1.4.1.bb @@ -0,0 +1,52 @@ +DESCRIPTION = "LoRa Packet Forwarder" +HOMEPAGE = "https://github.com/Lora-net" +PRIORITY = "optional" +SECTION = "console/utils" +# Semtech license is a modified BSD-style license +LICENSE = "SEMTECH" +LIC_FILES_CHKSUM = "file://LICENSE;md5=22af7693d7b76ef0fc76161c4be76c45" +DEPENDS = "lora-gateway" +PR = "r7" + +# tag v1.4.1 +SRCREV = "0011a60759a7d81656a5393e97089daab1ff1a81" + +SRC_URI = "git://github.com/Lora-net/packet_forwarder.git;protocol=git \ + file://lora-packet-forwarder-set-spi-path.patch \ + file://lora-packet-forwarder-skip-bad-packets.patch \ + file://lora-packet-forwarder-fixb64.patch \ + file://lora-packet-forwarder-mts-enhancements.patch \ +" + +S = "${WORKDIR}/git" + +LORA_DIR = "/opt/lora" + +export LGW_PATH = "${STAGING_LIBDIR}/lora" +export LGW_INC = "${STAGING_INCDIR}/lora" + +CFLAGS += "-I${LGW_INC} -Iinc -I." + +do_compile() { + oe_runmake +} + +do_install() { + install -d ${D}${LORA_DIR} + install -m 755 gps_pkt_fwd/gps_pkt_fwd ${D}${LORA_DIR}/ + install -m 755 basic_pkt_fwd/basic_pkt_fwd ${D}${LORA_DIR}/ + install -m 755 beacon_pkt_fwd/beacon_pkt_fwd ${D}${LORA_DIR}/ + install -m 755 util_sink/util_sink ${D}${LORA_DIR}/ + install -m 755 util_ack/util_ack ${D}${LORA_DIR}/ + +# skip util_tx_test since it conflicts with one in lora-gateway +# install -m 755 util_tx_test/util_tx_test ${D}${LORA_DIR}/ +} + +FILES_${PN} += "${LORA_DIR}" +FILES_${PN}-dbg += "${LORA_DIR}/.debug" + +# disable this on purpose for dev purposes +do_rm_work() { + echo "skipping" +} |