This is an automated email from the ASF dual-hosted git repository.
vipulrahane pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-mcumgr.git.
from 607995c Merge pull request #30 from nvlsianpu/backport-from-zephyr
new 97241e2 mynewt core mcumgr port
new 682df33 Custome reader/writer only used for ZEPHYR
new 43a2a81 Mynewt: Fix Apache Mynewt MCUmgr nuild issues
new 0a3fbb0 Remove stubs - were causing build issues since the packpages
are separate for mynewt port
new 6e4556a Fix build issues
new 97c6ecd Fix build issues
new 8aec843 Add img_mgmt pkg_init
new adb281c cmd/os_mgmt: Fix mynewt port and misc fixes
new 06ecd3b log_mgmt: Add fixes from mynewt-core to log_mgmt
new 69f7d69 log_mgmt: log entry encoder needs to be generic
new a0d3a96 Fix a few bugs with log read handlers
new a29e222 SMP: make multiple registration for same group possible
new 5d72448 stat_mgmt: Add stat_mgmt support for mynewt
new 6496426 img_mgmt: Make img_mgmt_slot_in_use() a public API
new 675e39b Added lazy erase support.
new 7f034c4 Fix soft reset logging
new 8914f87 img_mgmt: Mynewt port update
new 724c256 img_mgmt: Fix build
new f7e2f1c cmd/img_mgmt: Add doxygen comments for img_mgmt
new edb23c0 samples/smp_svr: Fix smp_svr for apache-mynewt
new a826909 smp_srv: Add capability to read UICR
new e012ffe cboratttr,cmd/img_mgmt: Fix tests
new fcd6904 omp: wip - oicmgr + omp_streamer
new b5d5f49 omp_svr: Add app for omp_svr
new 8be59d9 write map not breaking anymore
new 36ba8d2 omp now working propperly
new abc5a1a Add capability to talkt to the omp_svr over BLE
new 7e13d8c omp_svr: remove redundant code and enable GATT
new a544bec omp_svr: Use console for BLE logging and not cbmem
new 2ee4828 Cleanup and rearangemet: added omp/port/mynewt, added struct
omp_state, mgmt encoder/parser inited on oicmgr.
new 523f08b Cleanup on samples/smp_svr
new 7fd945c Private omp function prototypes now on omp_priv.h
new 92fa6ca OMP_OIC_RESOURCE_NAME now defined on mynewt-core/oicmgr side
new 436a9d5 Fixed timeout on invalid log show command,
omp_process_mgmt_hdr refactored
new c998c74 Fixed timeout on invalid log show command,
omp_process_mgmt_hdr refactored
new 1ae7ca5 omp, mgmt: Changes for backwards compatibility
new 2df6c98 img_mgmt: use IMG_MGMT_DUMMY_HDR and add backwards
new 7a11126 cborattr: Make mbuf APIs non ZEPHYR specific
new 61dd615 log_mgmt: Add backwards compatibility for log_mgmt
new 542db22 log imghash support added
new 33169b7 Sample apps support native BSP.
new 93e47e5 samples: change syscfgs to match mcumgr changes
new 29473a3 cborattr: Add testcases from mynewt-core
new 610a396 cborattr_encode_omit test now runs.
new 4d8078f adding cborattr dependency on omp
new 635d701 Fix os_mgmt conditional feature enablement
new 3676852 stat_mgmt: fix stat list crash
new 82a1129 stat_mgmt: Fix cbor container issues
new bd31d22 Fixing log body read size.
new 63e5fb9 log_mgmt: Use log max len for reading log entries
new 43e485f mynewt_log_mgmt: need to read chunk by chunk
new a2fd55c log_mgmt: log entry shld get encoded at the end
new 3ead348 mynewt_log_mgmt:syscfg changes chunked log reads
new dd0178f log_mgmt: fix includes
new a181f39 log_mgmt: errors should be caught per chunk
new 3d9943f img_mgmt: add img_mgmt logging from mynewt-core
new ee7c1ac Closing CBOR containers on error situations before returning.
new b20765b Merge pull request #11 from mlaz/mynewt_mcumgr
new d6a7bcb log_mgmt: Add watermark support
new a6adcb2 log_mgmt: entries need to be encoded chunk by chunk
new 59576c1 log_mgmt: add some comments
new 8478dcb cmd: move config headers to include directory
new bde1003 cborattr: APIs & structs need to be MYNEWT specific
new ebf9d6e img_mgmt: coding style changes
new 081cad7 cmd/fs fixing package dependency chain
new 50e8571 Merge pull request #12 from mlaz/mynewt_mcumgr
new 99f486c Fix dependencies for CI
new 558f91c update repository.yml
new 115d261 log_mgmt: fix CI builds
new 296faca log_mgmt: add stub for log_mgmt_impl_set_watermark
new 9304832 update README with new paths
new b1d4347 log_mgmt: log_set_watermark() ii based on syscfg
new 3555086 Merge pull request #27 from vrahane/mynewt_mcumgr
The 182 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README-mynewt.md | 4 +-
mgmt/syscfg.yml => cborattr/Kconfig | 18 +-
cborattr/include/cborattr/cborattr.h | 69 ++-
cborattr/pkg.yml | 2 +-
cborattr/src/cborattr.c | 206 +++++++-
cborattr/test/pkg.yml | 8 +-
cborattr/test/src/test_cborattr.h | 2 +
cborattr/test/src/test_cborattr_utils.c | 15 +
cborattr/test/src/testcases/cborattr_encode_omit.c | 140 ++++++
.../test/src/testcases/cborattr_encode_simple.c | 143 ++++++
.../{src => include/fs_mgmt}/fs_mgmt_config.h | 0
cmd/fs_mgmt/{ => port/mynewt}/pkg.yml | 4 +-
cmd/fs_mgmt/src/fs_mgmt.c | 2 +-
cmd/img_mgmt/include/img_mgmt/img_mgmt.h | 215 ++++++++
.../{src => include/img_mgmt}/img_mgmt_config.h | 4 +
cmd/img_mgmt/include/img_mgmt/img_mgmt_impl.h | 62 +++
cmd/img_mgmt/pkg.yml | 5 +-
{cborattr => cmd/img_mgmt/port/mynewt}/pkg.yml | 11 +-
cmd/img_mgmt/port/mynewt/src/mynewt_img_mgmt.c | 357 ++++++++++++-
cmd/img_mgmt/port/mynewt/src/mynewt_img_mgmt_log.c | 141 ++++++
{cborattr => cmd/img_mgmt/port/mynewt}/syscfg.yml | 16 +-
cmd/img_mgmt/src/img_mgmt.c | 438 ++++++++--------
cmd/img_mgmt/src/img_mgmt_priv.h | 8 -
cmd/img_mgmt/src/img_mgmt_state.c | 41 +-
cmd/img_mgmt/src/stubs.c | 64 ---
cmd/img_mgmt/syscfg.yml | 31 +-
cmd/log_mgmt/Kconfig | 52 ++
cmd/log_mgmt/include/log_mgmt/log_mgmt.h | 15 +
.../{src => include/log_mgmt}/log_mgmt_config.h | 11 +-
cmd/log_mgmt/include/log_mgmt/log_mgmt_impl.h | 13 +-
cmd/{os_mgmt => log_mgmt}/pkg.yml | 5 +-
{cborattr => cmd/log_mgmt/port/mynewt}/pkg.yml | 10 +-
cmd/log_mgmt/port/mynewt/src/mynewt_log_mgmt.c | 107 ++--
cmd/{fs_mgmt => log_mgmt/port/mynewt}/syscfg.yml | 32 +-
cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c | 2 +-
cmd/log_mgmt/src/log_mgmt.c | 245 +++++++--
cmd/log_mgmt/src/stubs.c | 6 +
.../{src => include/os_mgmt}/os_mgmt_config.h | 0
cmd/os_mgmt/pkg.yml | 9 +
cmd/os_mgmt/{ => port/mynewt}/pkg.yml | 6 +-
cmd/os_mgmt/port/mynewt/src/mynewt_os_mgmt.c | 21 +-
cmd/os_mgmt/src/os_mgmt.c | 23 +-
cmd/os_mgmt/syscfg.yml | 10 +
.../{src => include/stat_mgmt}/stat_mgmt_config.h | 0
cmd/{os_mgmt => stat_mgmt}/pkg.yml | 6 +-
{cborattr => cmd/stat_mgmt/port/mynewt}/pkg.yml | 10 +-
.../src/mynewt_stat_mgmt.c} | 55 +-
cmd/stat_mgmt/src/stat_mgmt.c | 17 +-
cmd/{os_mgmt => stat_mgmt}/syscfg.yml | 14 +-
mgmt/include/mgmt/mgmt.h | 8 +-
mgmt/pkg.yml | 1 -
mgmt/src/mgmt.c | 61 ++-
smp/include/smp/smp.h => omp/include/omp/omp.h | 64 ++-
.../fs_mgmt.h => omp/include/omp/omp_priv.h | 24 +-
{cmd/fs_mgmt => omp}/pkg.yml | 13 +-
{cmd/fs_mgmt => omp/port/mynewt}/pkg.yml | 7 +-
omp/port/mynewt/src/mynewt_omp.c | 91 ++++
omp/src/omp.c | 157 ++++++
repository.yml | 2 +-
samples/omp_svr/mynewt/pkg.yml | 70 +++
samples/omp_svr/mynewt/src/gatt_svr.c | 58 +++
samples/omp_svr/mynewt/src/main.c | 553 +++++++++++++++++++++
.../stubs.c => samples/omp_svr/mynewt/src/misc.c | 29 +-
.../omp_svr/mynewt/src/omp_svr.h | 44 +-
samples/{smp_svr => omp_svr}/mynewt/syscfg.yml | 36 +-
samples/smp_svr/mynewt/pkg.yml | 37 +-
samples/smp_svr/mynewt/src/gatt_svr.c | 204 ++++++++
samples/smp_svr/mynewt/src/main.c | 53 +-
.../smp_svr/mynewt/src/smp_svr.h | 44 +-
samples/smp_svr/mynewt/syscfg.yml | 24 +-
smp/pkg.yml | 13 +-
smp/src/smp.c | 2 +-
{cmd/fs_mgmt => util}/pkg.yml | 11 +-
73 files changed, 3591 insertions(+), 690 deletions(-)
copy mgmt/syscfg.yml => cborattr/Kconfig (60%)
create mode 100644 cborattr/test/src/testcases/cborattr_encode_omit.c
create mode 100644 cborattr/test/src/testcases/cborattr_encode_simple.c
rename cmd/fs_mgmt/{src => include/fs_mgmt}/fs_mgmt_config.h (100%)
copy cmd/fs_mgmt/{ => port/mynewt}/pkg.yml (93%)
rename cmd/img_mgmt/{src => include/img_mgmt}/img_mgmt_config.h (82%)
copy {cborattr => cmd/img_mgmt/port/mynewt}/pkg.yml (77%)
create mode 100644 cmd/img_mgmt/port/mynewt/src/mynewt_img_mgmt_log.c
copy {cborattr => cmd/img_mgmt/port/mynewt}/syscfg.yml (67%)
delete mode 100644 cmd/img_mgmt/src/stubs.c
create mode 100644 cmd/log_mgmt/Kconfig
rename cmd/log_mgmt/{src => include/log_mgmt}/log_mgmt_config.h (74%)
copy cmd/{os_mgmt => log_mgmt}/pkg.yml (86%)
copy {cborattr => cmd/log_mgmt/port/mynewt}/pkg.yml (80%)
copy cmd/{fs_mgmt => log_mgmt/port/mynewt}/syscfg.yml (52%)
rename cmd/os_mgmt/{src => include/os_mgmt}/os_mgmt_config.h (100%)
copy cmd/os_mgmt/{ => port/mynewt}/pkg.yml (86%)
rename cmd/stat_mgmt/{src => include/stat_mgmt}/stat_mgmt_config.h (100%)
copy cmd/{os_mgmt => stat_mgmt}/pkg.yml (84%)
copy {cborattr => cmd/stat_mgmt/port/mynewt}/pkg.yml (80%)
copy cmd/stat_mgmt/port/{zephyr/src/zephyr_stat_mgmt.c =>
mynewt/src/mynewt_stat_mgmt.c} (66%)
copy cmd/{os_mgmt => stat_mgmt}/syscfg.yml (68%)
copy smp/include/smp/smp.h => omp/include/omp/omp.h (57%)
copy cmd/fs_mgmt/include/fs_mgmt/fs_mgmt.h => omp/include/omp/omp_priv.h (66%)
copy {cmd/fs_mgmt => omp}/pkg.yml (79%)
copy {cmd/fs_mgmt => omp/port/mynewt}/pkg.yml (86%)
create mode 100644 omp/port/mynewt/src/mynewt_omp.c
create mode 100644 omp/src/omp.c
create mode 100644 samples/omp_svr/mynewt/pkg.yml
create mode 100644 samples/omp_svr/mynewt/src/gatt_svr.c
create mode 100644 samples/omp_svr/mynewt/src/main.c
copy cmd/os_mgmt/src/stubs.c => samples/omp_svr/mynewt/src/misc.c (65%)
copy mgmt/include/mgmt/endian.h => samples/omp_svr/mynewt/src/omp_svr.h (56%)
copy samples/{smp_svr => omp_svr}/mynewt/syscfg.yml (69%)
create mode 100644 samples/smp_svr/mynewt/src/gatt_svr.c
copy mgmt/include/mgmt/endian.h => samples/smp_svr/mynewt/src/smp_svr.h (56%)
copy {cmd/fs_mgmt => util}/pkg.yml (84%)