diff options
author | Jason Reiss <jreiss@multitech.com> | 2016-11-02 11:17:57 -0500 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2016-11-02 11:17:57 -0500 |
commit | 7f176197b131aadcbfdb9e85c424a9ed67543af7 (patch) | |
tree | 1da50efe16b86e2d777a7a4ce27cc48a0f7cae36 | |
parent | 1bb2e0d8e48d956e8140590840c47ca29cc96175 (diff) | |
download | meta-mlinux-7f176197b131aadcbfdb9e85c424a9ed67543af7.tar.gz meta-mlinux-7f176197b131aadcbfdb9e85c424a9ed67543af7.tar.bz2 meta-mlinux-7f176197b131aadcbfdb9e85c424a9ed67543af7.zip |
lora: move packet forwarder utilities into folder
-rw-r--r-- | recipes-connectivity/lora/lora-packet-forwarder_3.0.0.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes-connectivity/lora/lora-packet-forwarder_3.0.0.bb b/recipes-connectivity/lora/lora-packet-forwarder_3.0.0.bb index 8042d50..3f5be37 100644 --- a/recipes-connectivity/lora/lora-packet-forwarder_3.0.0.bb +++ b/recipes-connectivity/lora/lora-packet-forwarder_3.0.0.bb @@ -38,9 +38,10 @@ do_install() { install -m 755 ${WORKDIR}/global_conf.json.3.0.0.PCB_E336.EU868.basic.clksrc0 ${D}${LORA_DIR}/global_conf.json install -m 755 ${WORKDIR}/local_conf.json ${D}${LORA_DIR}/ - install -m 755 util_sink/util_sink ${D}${LORA_DIR}/ - install -m 755 util_ack/util_ack ${D}${LORA_DIR}/ - install -m 755 util_tx_test/util_tx_test ${D}${LORA_DIR}/ + install -d ${D}${LORA_DIR}/forwarder-utils + install -m 755 util_sink/util_sink ${D}${LORA_DIR}/forwarder-utils/ + install -m 755 util_ack/util_ack ${D}${LORA_DIR}/forwarder-utils/ + install -m 755 util_tx_test/util_tx_test ${D}${LORA_DIR}/forwarder-utils/ install -m 755 ${WORKDIR}/README.md ${D}${LORA_DIR}/ } @@ -52,7 +53,7 @@ do_install_append_mtp() { } FILES_${PN} += "${LORA_DIR}" -FILES_${PN}-dbg += "${LORA_DIR}/.debug" +FILES_${PN}-dbg += "${LORA_DIR}/.debug ${LORA_DIR}/forwarder-utils/.debug" # disable this on purpose for dev purposes do_rm_work() { |