diff options
author | Harsh Sharma <harsh.sharma@multitech.com> | 2023-05-18 12:24:43 -0500 |
---|---|---|
committer | Harsh Sharma <harsh.sharma@multitech.com> | 2023-05-18 12:24:43 -0500 |
commit | 5bfdea5a4d9ea962ec099f9b556d4af8619959af (patch) | |
tree | e31fbd7cf7e7402e04ab117732b800204a4b2e0b | |
parent | 1d788076bdfeb03091b0f2fb9911c7cd7222952c (diff) | |
download | meta-mlinux-5bfdea5a4d9ea962ec099f9b556d4af8619959af.tar.gz meta-mlinux-5bfdea5a4d9ea962ec099f9b556d4af8619959af.tar.bz2 meta-mlinux-5bfdea5a4d9ea962ec099f9b556d4af8619959af.zip |
Removed lut cp from pkf init script
-rwxr-xr-x | recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder.init | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder.init b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder.init index e5551d7..1e54d65 100755 --- a/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder.init +++ b/recipes-connectivity/lora/lora-packet-forwarder/lora-packet-forwarder.init @@ -234,18 +234,12 @@ setup_mtcap() { GLOBAL_CONF=/opt/lora/global_conf.json.MTCAP_LORA_1_5.EU868 else GLOBAL_CONF=/opt/lora/global_conf.json.MTCAP2_LORA_1_5.EU868 - if [ "$hw" = "MTCAP-0.3" ]; then - cp /opt/lora/temp_lut.json.MTCAP2.EU868 /var/run/lora/1/temp_lut.json - fi fi elif [ "$lora_id" = "$lora_mtcap_id915" ]; then if [ "$hw" = "MTCAP-0.1" ]; then GLOBAL_CONF=/opt/lora/global_conf.json.MTCAP_LORA_1_5.US915 else GLOBAL_CONF=/opt/lora/global_conf.json.MTCAP2_LORA_1_5.US915 - if [ "$hw" = "MTCAP-0.3" ]; then - cp /opt/lora/temp_lut.json.MTCAP2.US915 /var/run/lora/1/temp_lut.json - fi fi else return 1 |