Commit graph

22 commits

Author SHA1 Message Date
Ronny Nilsson
cd86ff9396 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* ee63f0c Kill third party proxy applications when we need to exit dectmngr2. They too need to restart. Gigaset ULE has an own watchdog and will restart by itself in 45 s (if in use). This is crude and of course we need a better API!
* 28dd5ba Default to radio auto mode if we can't understand the parameter (it may be of an old format).
* c084e7d Comments
* 6c4e378 Before starting a registration of handsets we always set the access code (PIN code) to 0000 due to third party applications also change the code sometimes and we might get out of sync.
* 26a15d5 Fix a compiler warning
* 73533fb Add support for third party proxy appliations. ULE daemon use this for communicating with Dect stack.
* 01e80ba Debug print what file descriptor we use
* 5043296 Fix memory leak if re-registering same device over and over again.
* 2620e49 Ignore ULE sensors, they are handled by another daemon. We only care of voice handsets.
* a849015 Always refresh the handset list, just in case.
* 04f8c99 Report error back if someone tries to start a call without first activating the radio.
* 742423b - When querying dectmngr2 with UBUS for state we also report Natalie version, radio spectrum type and fixed part RFPI. - Don't exit program if device RFPI is invalid, due to program must be running for factory setup tool (which writes new RFPI). Instead we issue a warning, both in log and via UBUS.
* ad2026e - Fixed issue where flash programming of Natalie V12.26 failed on ARM. refs #9584 - Add packet retransmitt support if we get no answer for a request. - Remove unused code. - Fix compiler warnings. - Cleanups
* baefb8d - Remove unused code. - Fix compiler warnings.
* 22527d5 - Correct arguments to calloc() - Fix many compiler warnings. - Add check for reading beyond buffer end. - Comments
-------------------------------------------------------------------------------
commit ee63f0c087840adba9d944ae31d71a3ef9d64043
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:13:18 +0200

    Kill third party proxy applications when we need to exit dectmngr2. They too
    need to restart. Gigaset ULE has an own watchdog and will restart by itself
    in 45 s (if in use). This is crude and of course we need a better API!

Base directory -> /
 src/connection_init.c | 10 ++++++++++
 1 file changed, 10 insertions(+)
-------------------------------------------------------------------------------
commit 28dd5ba319dacfe9aa15363002866644e902ce2e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:11:16 +0200

    Default to radio auto mode if we can't understand the parameter (it may be
    of an old format).

Base directory -> /
 src/ubus.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
-------------------------------------------------------------------------------
commit c084e7de33394bb786a0b8158556bfd3f743aab0
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-20 15:09:13 +0200

    Comments

Base directory -> /
 files/dectmngr-wrapper.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 6c4e3789d67484ee1574074a5f1bf59d1a974123
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-16 17:51:03 +0200

    Before starting a registration of handsets we always set the access code
    (PIN code) to 0000 due to third party applications also change the code
    sometimes and we might get out of sync.

Base directory -> /
 src/connection_init.c | 77 +++++++++++++++++++++++++++++++++++++++------------
 src/connection_init.h |  1 +
 2 files changed, 60 insertions(+), 18 deletions(-)
-------------------------------------------------------------------------------
commit 26a15d54f118ca8ae4237ab8f5f38394d3a165be
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-16 17:45:08 +0200

    Fix a compiler warning

Base directory -> /
 src/handset.c | 1 +
 1 file changed, 1 insertion(+)
-------------------------------------------------------------------------------
commit 73533fb3c9729fc16e37ab063730ba01b1b20207
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-15 17:50:50 +0200

    Add support for third party proxy appliations. ULE daemon use this for
    communicating with Dect stack.

Base directory -> /
 src/Makefile          |   2 +-
 src/app.c             |   2 +
 src/connection_init.c |  55 ++++++------
 src/connection_init.h |   1 +
 src/handset.c         |   4 +-
 src/rawmailproxy.c    | 227 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/rawmailproxy.h    |  23 +++++
 7 files changed, 283 insertions(+), 31 deletions(-)
-------------------------------------------------------------------------------
commit 01e80ba291b31786487f89c37b6b1f0fdfd6db83
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-15 17:47:14 +0200

    Debug print what file descriptor we use

Base directory -> /
 src/rawmail.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit 504329668e2a9bd56990abb77eabf7aa5e572890
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:32:11 +0200

    Fix memory leak if re-registering same device over and over again.

Base directory -> /
 src/handset.c | 1 +
 1 file changed, 1 insertion(+)
-------------------------------------------------------------------------------
commit 2620e49c8a84d40b1087b3939de8a659239ffd86
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:31:57 +0200

    Ignore ULE sensors, they are handled by another daemon. We only care of
    voice handsets.

Base directory -> /
 src/handset.c | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit a849015ff3d3f0964b9cdcceb498ada4df0144f8
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-14 16:31:01 +0200

    Always refresh the handset list, just in case.

Base directory -> /
 src/handset.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 04f8c99f88115c0aba0a2ae2925d6e3cf65029e7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 17:40:02 +0200

    Report error back if someone tries to start a call without first activating
    the radio.

Base directory -> /
 src/external_call.c | 3 +++
 1 file changed, 3 insertions(+)
-------------------------------------------------------------------------------
commit 742423b37ba23d1d6e62ba28aa3ef1a827f7d9e7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 17:38:45 +0200

    - When querying dectmngr2 with UBUS for state we also report Natalie
    version, radio spectrum type and fixed part RFPI. - Don't exit program if
    device RFPI is invalid, due to program must be running for factory setup
    tool (which writes new RFPI). Instead we issue a warning, both in log and
    via UBUS.

Base directory -> /
 src/connection_init.c | 100 ++++++++++++++++++++++++++++++++++++++++++--------
 src/connection_init.h |   7 +++-
 src/ubus.c            |  26 +++++++++++--
 3 files changed, 113 insertions(+), 20 deletions(-)
-------------------------------------------------------------------------------
commit ad2026e462bb9f5e8fb2b0625a61c1e530966f8e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 13:45:00 +0200

    - Fixed issue where flash programming of Natalie V12.26 failed on ARM. refs
    #9584 - Add packet retransmitt support if we get no answer for a request. -
    Remove unused code. - Fix compiler warnings. - Cleanups

Base directory -> /
 src/flashloader.c | 216 +++++++++++++++++++++++++-----------------------------
 1 file changed, 99 insertions(+), 117 deletions(-)
-------------------------------------------------------------------------------
commit baefb8dd4db285852d84b619f2a4a9c8c04a3bd6
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 11:00:27 +0200

    - Remove unused code. - Fix compiler warnings.

Base directory -> /
 src/busmail.c | 52 +---------------------------------------------------
 1 file changed, 1 insertion(+), 51 deletions(-)
-------------------------------------------------------------------------------
commit 22527d5e39c58d651086adbdeb668c68a6e20362
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-09-08 10:45:25 +0200

    - Correct arguments to calloc() - Fix many compiler warnings. - Add check
    for reading beyond buffer end. - Comments

Base directory -> /
 src/buffer.c | 38 +++++++++++++++++++++-----------------
 src/buffer.h | 26 +++++++++++++-------------
 2 files changed, 34 insertions(+), 30 deletions(-)
-------------------------------------------------------------------------------
2016-09-21 15:17:33 +02:00
Ronny Nilsson
0bed6258c5 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* c225ac3 When  registration times out, without any new handset, also disable the radio if it's in auto mode. refs #9195
* 8dd1ef0  Remove compiler warnings.
* fa3ee41 - Ubus button event has changed format. refs #9873 - Remove compiler warnings.
-------------------------------------------------------------------------------
commit c225ac3cbfdc619dc3e4d149f5f145299dac442b
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-30 12:13:45 +0200

    When  registration times out, without any new handset, also disable the
    radio if it's in auto mode. refs #9195

Base directory -> /
 src/connection_init.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
-------------------------------------------------------------------------------
commit 8dd1ef00e3c376b4b96f504dc5ab0367bd596d4e
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-30 11:38:08 +0200

     Remove compiler warnings.

Base directory -> /
 src/connection_init.c | 15 ++++++++++++++-
 src/connection_init.h |  9 ---------
 2 files changed, 14 insertions(+), 10 deletions(-)
-------------------------------------------------------------------------------
commit fa3ee41e0ae066ba69ef298306594ac7c26a0c73
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-30 11:37:22 +0200

    - Ubus button event has changed format. refs #9873 - Remove compiler
    warnings.

Base directory -> /
 src/ubus.c | 97 +++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 51 insertions(+), 46 deletions(-)
-------------------------------------------------------------------------------
2016-08-30 13:40:11 +02:00
Ronny Nilsson
5888f24975 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 8e6556b Workaround for noisy sound with external Dect. Hardwire it to narrowband.
* e7e996a Major refactoring. Move handling of RSX debugger conneciton to a separate .c file and make the code a lot more descriptive. Now it's possible to understand how Natalie <-> RSX communication works.
* 6a8de42 - Code simplifications for better readabillity. Don't pass around void pointers everywhere, instead use the real backend type and move the type definitions from .c file to .h file. - Remove mysterious crash on ARM in calloc() by instead using malloc(). - Remove unused code.
* 969d1c8 - Move parts common with "eap" to a header file eap inclucde. This will reduce code duplication. - Remove unused code. - Remove compiler warning.
* 2ed68f8 Make the program configuration global. It should be possible to read it from anywhere.
* b46db2c Simplifications
* f7b7494 More fixes for building both against v12.26 and v11.19. More will come though.
* 2b1fe4f Fix to build against natalie 12.26
-------------------------------------------------------------------------------
commit 8e6556b48f65b60ddf63eb2dc0f09416b8670457
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-26 12:19:11 +0200

    Workaround for noisy sound with external Dect. Hardwire it to narrowband.

Base directory -> /
 src/connection_init.c | 2 +-
 src/external_call.c   | 9 +++++++--
 2 files changed, 8 insertions(+), 3 deletions(-)
-------------------------------------------------------------------------------
commit e7e996a21c0f83f475701e06c7343d52470af71a
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:59:15 +0200

    Major refactoring. Move handling of RSX debugger conneciton to a separate .c
    file and make the code a lot more descriptive. Now it's possible to
    understand how Natalie <-> RSX communication works.

Base directory -> /
 src/Makefile   |   2 +-
 src/app.c      | 246 ++++++++-------------------------------------------------
 src/app.h      |   3 +
 src/debugger.c | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/debugger.h |  15 ++++
 5 files changed, 289 insertions(+), 216 deletions(-)
-------------------------------------------------------------------------------
commit 6a8de4289bc3322f271284240e8d954ddedfa5f3
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:53:47 +0200

    - Code simplifications for better readabillity. Don't pass around void
    pointers everywhere, instead use the real backend type and move the type
    definitions from .c file to .h file. - Remove mysterious crash on ARM in
    calloc() by instead using malloc(). - Remove unused code.

Base directory -> /
 src/eap.c | 74 +++++++++++----------------------------------------------------
 src/eap.h | 37 ++++++++++++++++----------------
 2 files changed, 30 insertions(+), 81 deletions(-)
-------------------------------------------------------------------------------
commit 969d1c8ca0e290b4894cbf3ce9f73c7c51547ce7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:43:21 +0200

    - Move parts common with "eap" to a header file eap inclucde. This will
    reduce code duplication. - Remove unused code. - Remove compiler warning.

Base directory -> /
 src/busmail.c | 47 ++---------------------------------------------
 src/busmail.h | 21 +++++++++++++++++++++
 2 files changed, 23 insertions(+), 45 deletions(-)
-------------------------------------------------------------------------------
commit 2ed68f8c087ab24328fba27e75a01c65cd32a8b5
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:35:29 +0200

    Make the program configuration global. It should be possible to read it from
    anywhere.

Base directory -> /
 src/main.c | 17 +++++++----------
 src/main.h | 12 ++++++++++++
 2 files changed, 19 insertions(+), 10 deletions(-)
-------------------------------------------------------------------------------
commit b46db2c2a3fb991f66ad9a6253e41176e7126ff2
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:32:12 +0200

    Simplifications

Base directory -> /
 src/natalie_utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit f7b7494b44c3e9511ff9eb8957d3b372a1d68e46
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 15:47:52 +0200

    More fixes for building both against v12.26 and v11.19. More will come
    though.

Base directory -> /
 src/connection_init.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)
-------------------------------------------------------------------------------
commit 2b1fe4f81546b2581aefd156b90feaf47669dc89
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-07-26 16:11:45 +0200

    Fix to build against natalie 12.26

Base directory -> /
 src/api_parser.c      | 4 ----
 src/connection_init.c | 9 ++++++++-
 2 files changed, 8 insertions(+), 5 deletions(-)
-------------------------------------------------------------------------------
2016-08-26 13:19:04 +02:00
Ronny Nilsson
18c7931f96 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 1dad4bf Workaround for preventing daemon respawn when we want it to fully exit.
* 8276cd6 Don't get confused if same handset gets registered twice in a row.
* 29c6c1b - Initialize data structures for UBUS dynamically since on ARM we unregister and reregister over and over. During unregister the data becomes invalid (for some unknown reason) and thus needs to be recreated.
* bf4e2eb check /tmp/defaultreset to understand if defaultreset is in place
* 96a1dd8 adapt to new reboot reason check method
* 440a5d6 unregister handsets upon defaultreset fixes #9458
-------------------------------------------------------------------------------
commit 1dad4bfc86b0167e7c39fee7fbd4bf0935b4fa4a
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-07-08 15:03:46 +0200

    Workaround for preventing daemon respawn when we want it to fully exit.

Base directory -> /
 files/dect | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 8276cd67ab7659365e44b4eda883e322280048cd
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-07-07 15:54:04 +0200

    Don't get confused if same handset gets registered twice in a row.

Base directory -> /
 src/handset.c | 25 +++++++++++++++++--------
 1 file changed, 17 insertions(+), 8 deletions(-)
-------------------------------------------------------------------------------
commit 29c6c1b57aac14c32ec473335c873c64b470a8dc
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-07-07 15:52:19 +0200

    - Initialize data structures for UBUS dynamically since on ARM we unregister
    and reregister over and over. During unregister the data becomes invalid
    (for some unknown reason) and thus needs to be recreated.

Base directory -> /
 src/ubus.c | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)
-------------------------------------------------------------------------------
commit bf4e2eb41e2bc71c335ef63f7fa4db76c125edbf
Author: Sukru Senli <sukru.senli@inteno.se>
Date: 2016-07-05 14:33:21 +0200

    check /tmp/defaultreset to understand if defaultreset is in place

Base directory -> /
 files/dect | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 96a1dd8a6cbee324ae45382fc8ea41c5d21e2d80
Author: Sukru Senli <sukru.senli@inteno.se>
Date: 2016-07-05 12:29:11 +0200

    adapt to new reboot reason check method

Base directory -> /
 files/dect | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit 440a5d6b6e6e4f9fa50ae7ba29c7fecc72148b66
Author: Sukru Senli <sukru.senli@inteno.se>
Date: 2016-07-05 11:43:55 +0200

    unregister handsets upon defaultreset fixes #9458

Base directory -> /
 files/dect | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
2016-07-08 15:05:54 +02:00
Sukru Senli
6b51f9d01f Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* bf4e2eb check /tmp/defaultreset to understand if defaultreset is in place
-------------------------------------------------------------------------------
commit bf4e2eb41e2bc71c335ef63f7fa4db76c125edbf
Author: Sukru Senli <sukru.senli@inteno.se>
Date: 2016-07-05 14:33:21 +0200

    check /tmp/defaultreset to understand if defaultreset is in place

Base directory -> /
 files/dect | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
2016-07-05 14:35:09 +02:00
Sukru Senli
543a0a4083 update dectmngr2 source version 2016-07-05 12:30:58 +02:00
Sukru Senli
509402606b Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 440a5d6 unregister handsets upon defaultreset fixes #9458
-------------------------------------------------------------------------------
commit 440a5d6b6e6e4f9fa50ae7ba29c7fecc72148b66
Author: Sukru Senli <sukru.senli@inteno.se>
Date: 2016-07-05 11:43:55 +0200

    unregister handsets upon defaultreset fixes #9458

Base directory -> /
 files/dect | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
2016-07-05 11:45:39 +02:00
Ronny Nilsson
103964b2d1 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 07c8a16 Before dectmngr2 does a fast exit (in case of an error), try to send a failure response to any ubus quierier (or might block in a timeout).
* c5619c2 - Only shuttdown ubus receiver if the radio is configured for auto off and is about to become off soon. - Comments
* a4898c8 - Extend timeout error message to ubus querier due to deleting a handset may be very slow sometimes. - When shutting down ubus receiver, also send an error to any active querier (to avoid blocking timeouts). - Only enable ubus receiver once if needed.
-------------------------------------------------------------------------------
commit 07c8a1665dc1f767c8ae2da92e41f482956f8959
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-06-28 15:43:12 +0200

    Before dectmngr2 does a fast exit (in case of an error), try to send a
    failure response to any ubus quierier (or might block in a timeout).

Base directory -> /
 src/error.c | 5 +++++
 src/ubus.c  | 1 +
 2 files changed, 6 insertions(+)
-------------------------------------------------------------------------------
commit c5619c257a199eb331f41798a01d5d608ce149b5
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-06-28 13:35:02 +0200

    - Only shuttdown ubus receiver if the radio is configured for auto off and
    is about to become off soon. - Comments

Base directory -> /
 src/handset.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
-------------------------------------------------------------------------------
commit a4898c88a49b94bccb5c9a60cab3f6bdff94cffc
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-06-28 13:33:08 +0200

    - Extend timeout error message to ubus querier due to deleting a handset may
    be very slow sometimes. - When shutting down ubus receiver, also send an
    error to any active querier (to avoid blocking timeouts). - Only enable ubus
    receiver once if needed.

Base directory -> /
 src/ubus.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
-------------------------------------------------------------------------------
2016-06-28 17:14:50 +02:00
Ronny Nilsson
cb19eafc50 Update feed [ feed_inteno_packages ] package [ dectmngr2 ]
-------------------------------------------------------------------------------
* 61a08e5 - After last handset has been deleted we need to block incomming ubus messages due to we will be busy for a long time. - Cleanups
-------------------------------------------------------------------------------
commit 61a08e5de748ab2e317a1f0384f97087b25728cd
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-06-27 15:11:10 +0200

    - After last handset has been deleted we need to block incomming ubus
    messages due to we will be busy for a long time.
    - Cleanups
    - refs #9633

Base directory -> /
 src/connection_init.c |  6 +++-
 src/handset.c         |  5 ++++
 src/ubus.c            | 78 +++++++++++++++++++++++++++++++++++++++------------
 src/ubus.h            |  2 ++
 4 files changed, 72 insertions(+), 19 deletions(-)
-------------------------------------------------------------------------------
2016-06-27 16:03:21 +02:00
Ronny Nilsson
52f8ff2b5d Fix for dect unpair and re-pair with voice. refs #9463 2016-06-14 16:37:15 +02:00
Ronny Nilsson
5566c4b885 New wrapper script for dectmngr2 which reloads kernel module when necessary 2016-06-14 15:24:49 +02:00
Ronny Nilsson
17d2905283 - Upstream update of Dectmngr2
- Clenups, remove unused flags
2016-05-26 14:20:50 +02:00
Sukru Senli
650f941dfc dectmngr2: copy over dect config 2016-05-19 18:47:30 +02:00
Sukru Senli
645a9d919f dectmngr2: add dect.config file 2016-05-19 16:32:23 +02:00
Ronny Nilsson
85fcb1f033 - Install default NVS data
- Upstream merge to master branch
2016-04-04 14:26:00 +02:00
Ronny Nilsson
0650265216 Beta branch for Dect support in DG400 2016-03-15 13:37:29 +01:00
Ronny Nilsson
106982c69a Dependencies for dectmngr2 2016-02-25 16:09:48 +01:00
Fredrik Åsberg
5811d46d56 Changed Makefiles to use HTTP URLs. 2016-02-19 11:24:32 +01:00
Kenneth Johansson
9959bdf138 build: encode git version in tar file.
apparently changing the git commit used is not enough the build still
takes the file in the dl directory if the filename is same.
2015-10-30 18:56:54 +01:00
Ronny Nilsson
811552d49b New upstream with ubus support 2015-08-14 13:23:39 +02:00
Sukru Senli
c9ff698198 upadte dect packages 2015-06-25 16:03:27 +02:00
Martin Schröder
97bd9201bd Added missing files 2015-06-23 16:34:01 +02:00