summaryrefslogtreecommitdiff
path: root/recipes-connectivity/lora/lora-network-server_2.0.14.bb
diff options
context:
space:
mode:
authorJason Reiss <jreiss@multitech.com>2018-01-11 07:26:32 -0600
committerJason Reiss <jreiss@multitech.com>2018-01-11 07:26:32 -0600
commit7735d3dfd1c02fc98c938083f32257942bb04acc (patch)
tree7baace6a77ec11c835812b77640fc9c75cefea55 /recipes-connectivity/lora/lora-network-server_2.0.14.bb
parent05459f0ec2cc88f7c7b8bd49e4e71d6fae54a24e (diff)
downloadmeta-mlinux-7735d3dfd1c02fc98c938083f32257942bb04acc.tar.gz
meta-mlinux-7735d3dfd1c02fc98c938083f32257942bb04acc.tar.bz2
meta-mlinux-7735d3dfd1c02fc98c938083f32257942bb04acc.zip
lora: update network server to 2.0.14, includes fix for adding sessions without restart of network server, modify log rotate to handle all lora-*.log files
Diffstat (limited to 'recipes-connectivity/lora/lora-network-server_2.0.14.bb')
-rw-r--r--recipes-connectivity/lora/lora-network-server_2.0.14.bb50
1 files changed, 50 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-network-server_2.0.14.bb b/recipes-connectivity/lora/lora-network-server_2.0.14.bb
new file mode 100644
index 0000000..90acbb8
--- /dev/null
+++ b/recipes-connectivity/lora/lora-network-server_2.0.14.bb
@@ -0,0 +1,50 @@
+DESCRIPTION = "MultiTech LoRa Network Server"
+PRIORITY = "optional"
+SECTION = "console/utils"
+LICENSE = "Proprietary"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ae2ad602b723a163cd33ca5ee991fbcd"
+DEPENDS = "jsoncpp libmts mosquitto sqlite3"
+RDEPENDS_${PN} += "lora-packet-forwarder logrotate bash"
+PR = "r2"
+CONFFILES_${PN} += "${sysconfdir}/default/lora-network-server ${sysconfdir}/init.d/lora-network-server"
+
+SRC_URI = "http://multitech.net/downloads/lora-network-server_${TUNE_PKGARCH}_${PV}.tar.gz \
+ file://lora-network-server.init \
+ file://lora-network-server.default \
+ file://lora-network-server.logrotate.conf \
+ "
+
+SRC_URI[md5sum] = "17894d4d40374bf68052bcce38d1310c"
+SRC_URI[sha256sum] = "4baae18fdaef48278a004abfb16b5e0a20d9990c252d0bb9d8a592ffca9ff6d7"
+
+# binaries are already stripped, so suppress warning
+INSANE_SKIP_${PN} = "already-stripped"
+
+S = "${WORKDIR}"
+
+LORA_DIR = "/opt/lora"
+
+do_compile() {
+}
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "lora-network-server"
+INITSCRIPT_PARAMS = "defaults 80 30"
+
+do_install() {
+ install -d ${D}${LORA_DIR}
+ install -m 0755 lora-network-server-mlinux-3 ${D}${LORA_DIR}/lora-network-server
+ install -m 0644 config/lora-network-server.conf.sample ${D}${LORA_DIR}/lora-network-server.conf.sample
+ install -m 0644 config/lora-network-server.conf.full ${D}${LORA_DIR}/lora-network-server.conf.full
+
+ install -d ${D}${sysconfdir}/default
+ install -m 0644 ${WORKDIR}/lora-network-server.default ${D}${sysconfdir}/default/lora-network-server
+ install -d ${D}${sysconfdir}/init.d
+ install -m 0755 ${WORKDIR}/lora-network-server.init ${D}${sysconfdir}/init.d/lora-network-server
+ install -d ${D}${sysconfdir}/logrotate.d
+ install -m 0644 ${WORKDIR}/lora-network-server.logrotate.conf ${D}${sysconfdir}/logrotate.d/lora-network-server.conf
+}
+
+FILES_${PN} += "${LORA_DIR}"
+FILES_${PN}-dbg += "${LORA_DIR}/.debug"