This is an automated email from the ASF dual-hosted git repository.

ccollins pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-mcumgr.git.


 discard d046efd  Pull latest tinycbor changes from the PR#83
 discard 6baf3fa  Sample app - smp_svr
 discard 433ad4e  Documentation.
 discard 71f5c18  Mynewt support.
 discard 90b5f3c  Zephyr support.
     new e5ec685  Zephyr support.
     new 1da5b49  Mynewt support.
     new 373dcb1  Documentation.
     new 7c761c0  Sample app - smp_svr
     new 7e83bda  Remove extraneous README.rst file.
     new 1ea9adb  Make MCUMGR_CMD_FS_MGMT depend on FILE_SYSTEM.
     new a4f1ba0  Add missing license text.
     new 1a1e227  Fix some misnamed identifiers.
     new 7f40df2  Reboot in system workqueue, not ISR.
     new e5fcfd6  log_mgmt command handler group.
     new 6c0dd9f  Add log_mgmt support to smp_svr sample app.
     new 2ee9695  smp_svr Mynewt sample app - Remove redundant dep.
     new e93bd66  Update documentation.
     new 89ee0f5  Add doxygen comments for log_mgmt.
     new 90c5cfd  Minor code cleanup.
     new 1124271  smp_svr - Allow both CONFIG_FCB and CONFIG_FS_NFFS
     new ee62327  smp_svr - fix build error when CONFIG_MDLOG unset.
     new 00bf1b8  stat_mgmt command handler group.
     new 3390a3a  smp_svr - Add statistics.
     new b15ecf9  smp_svr - Use CONFIG_BOOTLOADER_MCUBOOT setting.
     new 9dfb177  Correct "MCUboot" spelling in documentation.
     new 0921e38  Remove local tinycbor copy.
     new 6629d1c  zephyr img_mgmt: Use `FLASH_DEV_NAME`
     new a989cc9  Zephyr port: move mcumgr location in zephyr.
     new bfd56c3  smp_svr - Update zephyr port for compatibility.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d046efd)
            \
             N -- N -- N   refs/heads/master (bfd56c3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 25 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:
 Kconfig                                            |    5 +-
 README-mynewt.md                                   |   31 +
 README-zephyr.md                                   |   30 +
 README.md                                          |   29 +-
 cmd/CMakeLists.txt                                 |    2 +
 cmd/Kconfig                                        |    8 +-
 cmd/fs_mgmt/Kconfig                                |    1 +
 cmd/fs_mgmt/src/fs_mgmt_config.h                   |   19 +
 cmd/img_mgmt/port/zephyr/src/zephyr_img_mgmt.c     |   35 +-
 cmd/img_mgmt/src/img_mgmt_config.h                 |   19 +
 cmd/log_mgmt/CMakeLists.txt                        |    9 +
 cmd/log_mgmt/Kconfig                               |   54 +
 cmd/log_mgmt/include/log_mgmt/log_mgmt.h           |   83 +
 cmd/log_mgmt/include/log_mgmt/log_mgmt_impl.h      |  120 +
 cmd/log_mgmt/port/mynewt/src/mynewt_log_mgmt.c     |  206 ++
 cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c     |  189 ++
 cmd/log_mgmt/src/log_mgmt.c                        |  494 +++++
 .../log_mgmt/src/log_mgmt_config.h                 |   31 +-
 cmd/{img_mgmt => log_mgmt}/src/stubs.c             |   21 +-
 cmd/os_mgmt/include/os_mgmt/os_mgmt.h              |    2 -
 cmd/os_mgmt/port/zephyr/src/zephyr_os_mgmt.c       |   14 +-
 cmd/os_mgmt/src/os_mgmt_config.h                   |   19 +
 cmd/stat_mgmt/CMakeLists.txt                       |    9 +
 cmd/stat_mgmt/Kconfig                              |   36 +
 .../include/stat_mgmt/stat_mgmt.h}                 |   23 +-
 cmd/stat_mgmt/include/stat_mgmt/stat_mgmt_impl.h   |   70 +
 cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c   |   97 +
 cmd/stat_mgmt/src/stat_mgmt.c                      |  160 ++
 .../stat_mgmt/src/stat_mgmt_config.h               |   27 +-
 cmd/{os_mgmt => stat_mgmt}/src/stubs.c             |   10 +-
 ext/CMakeLists.txt                                 |    1 -
 ext/tinycbor/.appveyor.yml                         |   35 -
 ext/tinycbor/.gitattributes                        |    4 -
 ext/tinycbor/.gitignore                            |   81 -
 ext/tinycbor/.tag                                  |    1 -
 ext/tinycbor/.travis.yml                           |   60 -
 ext/tinycbor/CMakeLists.txt                        |   15 -
 ext/tinycbor/Doxyfile                              | 2318 --------------------
 ext/tinycbor/LICENSE                               |   21 -
 ext/tinycbor/Makefile                              |  234 --
 ext/tinycbor/README                                |   13 -
 ext/tinycbor/TODO                                  |   25 -
 ext/tinycbor/VERSION                               |    1 -
 ext/tinycbor/examples/examples.pro                 |    2 -
 ext/tinycbor/examples/simplereader.c               |  181 --
 ext/tinycbor/examples/simplereader.pro             |    3 -
 ext/tinycbor/maketag.pl                            |   91 -
 ext/tinycbor/pkg.yml                               |   29 -
 ext/tinycbor/src/cbor.dox                          |  123 --
 ext/tinycbor/src/cbor.h                            |  613 ------
 ext/tinycbor/src/cbor_buf_reader.c                 |  163 --
 ext/tinycbor/src/cbor_buf_reader.h                 |   47 -
 ext/tinycbor/src/cbor_buf_writer.c                 |   99 -
 ext/tinycbor/src/cbor_buf_writer.h                 |   55 -
 ext/tinycbor/src/cbor_cnt_writer.h                 |   63 -
 ext/tinycbor/src/cbor_decoder_reader.h             |   60 -
 ext/tinycbor/src/cbor_defs.h                       |  253 ---
 ext/tinycbor/src/cbor_encoder_writer.h             |   45 -
 ext/tinycbor/src/cborencoder.c                     |  638 ------
 .../src/cborencoder_close_container_checked.c      |   57 -
 ext/tinycbor/src/cborerrorstrings.c                |  182 --
 ext/tinycbor/src/cborinternal_p.h                  |   89 -
 ext/tinycbor/src/cborjson.h                        |   62 -
 ext/tinycbor/src/cborparser.c                      | 1550 -------------
 ext/tinycbor/src/cborparser_dup_string.c           |  118 -
 ext/tinycbor/src/cborpretty.c                      |  535 -----
 ext/tinycbor/src/cborpretty_stdio.c                |   85 -
 ext/tinycbor/src/cbortojson.c                      |  687 ------
 ext/tinycbor/src/cborvalidation.c                  |  674 ------
 ext/tinycbor/src/compilersupport_p.h               |  263 ---
 ext/tinycbor/src/open_memstream.c                  |  117 -
 ext/tinycbor/src/parsetags.pl                      |  116 -
 ext/tinycbor/src/src.pri                           |   18 -
 ext/tinycbor/src/tags.txt                          |   23 -
 ext/tinycbor/src/tinycbor-version.h                |    3 -
 ext/tinycbor/src/tinycbor.pro                      |    6 -
 ext/tinycbor/src/utf8_p.h                          |  104 -
 ext/tinycbor/tests/.gitignore                      |   15 -
 ext/tinycbor/tests/cpp/cpp.pro                     |    5 -
 ext/tinycbor/tests/cpp/tst_cpp.cpp                 |   44 -
 ext/tinycbor/tests/encoder/encoder.pro             |    9 -
 ext/tinycbor/tests/encoder/tst_encoder.cpp         |  735 -------
 ext/tinycbor/tests/parser/parser.pro               |   10 -
 ext/tinycbor/tests/parser/tst_parser.cpp           | 2119 ------------------
 ext/tinycbor/tests/tests.pro                       |    3 -
 ext/tinycbor/tests/tojson/tojson.pro               |    8 -
 ext/tinycbor/tests/tojson/tst_tojson.cpp           |  721 ------
 ext/tinycbor/tinycbor.pc.in                        |   11 -
 ext/tinycbor/tools/cbordump/cbordump.c             |  165 --
 ext/tinycbor/tools/cbordump/cbordump.pro           |   10 -
 ext/tinycbor/tools/json2cbor/json2cbor.c           |  490 -----
 ext/tinycbor/tools/json2cbor/json2cbor.pro         |   20 -
 mgmt/include/mgmt/mgmt.h                           |   18 +-
 mgmt/src/mgmt.c                                    |   14 +-
 samples/smp_svr/README.md                          |   32 +-
 samples/smp_svr/mynewt/pkg.yml                     |    1 -
 samples/smp_svr/zephyr/CMakeLists.txt              |    5 +-
 samples/smp_svr/zephyr/README.rst                  |   41 -
 samples/smp_svr/zephyr/prj.conf                    |   54 +-
 samples/smp_svr/zephyr/src/main.c                  |  123 +-
 100 files changed, 1989 insertions(+), 14480 deletions(-)
 create mode 100644 README-mynewt.md
 create mode 100644 README-zephyr.md
 create mode 100644 cmd/log_mgmt/CMakeLists.txt
 create mode 100644 cmd/log_mgmt/Kconfig
 create mode 100644 cmd/log_mgmt/include/log_mgmt/log_mgmt.h
 create mode 100644 cmd/log_mgmt/include/log_mgmt/log_mgmt_impl.h
 create mode 100644 cmd/log_mgmt/port/mynewt/src/mynewt_log_mgmt.c
 create mode 100644 cmd/log_mgmt/port/zephyr/src/zephyr_log_mgmt.c
 create mode 100644 cmd/log_mgmt/src/log_mgmt.c
 copy ext/base64/test/src/encoding_test_priv.h => 
cmd/log_mgmt/src/log_mgmt_config.h (60%)
 copy cmd/{img_mgmt => log_mgmt}/src/stubs.c (67%)
 create mode 100644 cmd/stat_mgmt/CMakeLists.txt
 create mode 100644 cmd/stat_mgmt/Kconfig
 copy cmd/{fs_mgmt/include/fs_mgmt/fs_mgmt.h => 
stat_mgmt/include/stat_mgmt/stat_mgmt.h} (68%)
 create mode 100644 cmd/stat_mgmt/include/stat_mgmt/stat_mgmt_impl.h
 create mode 100644 cmd/stat_mgmt/port/zephyr/src/zephyr_stat_mgmt.c
 create mode 100644 cmd/stat_mgmt/src/stat_mgmt.c
 copy ext/base64/test/src/encoding_test_priv.h => 
cmd/stat_mgmt/src/stat_mgmt_config.h (71%)
 copy cmd/{os_mgmt => stat_mgmt}/src/stubs.c (76%)
 delete mode 100644 ext/tinycbor/.appveyor.yml
 delete mode 100644 ext/tinycbor/.gitattributes
 delete mode 100644 ext/tinycbor/.gitignore
 delete mode 100644 ext/tinycbor/.tag
 delete mode 100644 ext/tinycbor/.travis.yml
 delete mode 100644 ext/tinycbor/CMakeLists.txt
 delete mode 100644 ext/tinycbor/Doxyfile
 delete mode 100644 ext/tinycbor/LICENSE
 delete mode 100644 ext/tinycbor/Makefile
 delete mode 100644 ext/tinycbor/README
 delete mode 100644 ext/tinycbor/TODO
 delete mode 100644 ext/tinycbor/VERSION
 delete mode 100644 ext/tinycbor/examples/examples.pro
 delete mode 100644 ext/tinycbor/examples/simplereader.c
 delete mode 100644 ext/tinycbor/examples/simplereader.pro
 delete mode 100644 ext/tinycbor/maketag.pl
 delete mode 100644 ext/tinycbor/pkg.yml
 delete mode 100644 ext/tinycbor/src/cbor.dox
 delete mode 100644 ext/tinycbor/src/cbor.h
 delete mode 100644 ext/tinycbor/src/cbor_buf_reader.c
 delete mode 100644 ext/tinycbor/src/cbor_buf_reader.h
 delete mode 100644 ext/tinycbor/src/cbor_buf_writer.c
 delete mode 100644 ext/tinycbor/src/cbor_buf_writer.h
 delete mode 100644 ext/tinycbor/src/cbor_cnt_writer.h
 delete mode 100644 ext/tinycbor/src/cbor_decoder_reader.h
 delete mode 100644 ext/tinycbor/src/cbor_defs.h
 delete mode 100644 ext/tinycbor/src/cbor_encoder_writer.h
 delete mode 100644 ext/tinycbor/src/cborencoder.c
 delete mode 100644 ext/tinycbor/src/cborencoder_close_container_checked.c
 delete mode 100644 ext/tinycbor/src/cborerrorstrings.c
 delete mode 100644 ext/tinycbor/src/cborinternal_p.h
 delete mode 100644 ext/tinycbor/src/cborjson.h
 delete mode 100644 ext/tinycbor/src/cborparser.c
 delete mode 100644 ext/tinycbor/src/cborparser_dup_string.c
 delete mode 100644 ext/tinycbor/src/cborpretty.c
 delete mode 100644 ext/tinycbor/src/cborpretty_stdio.c
 delete mode 100644 ext/tinycbor/src/cbortojson.c
 delete mode 100644 ext/tinycbor/src/cborvalidation.c
 delete mode 100644 ext/tinycbor/src/compilersupport_p.h
 delete mode 100644 ext/tinycbor/src/open_memstream.c
 delete mode 100755 ext/tinycbor/src/parsetags.pl
 delete mode 100644 ext/tinycbor/src/src.pri
 delete mode 100644 ext/tinycbor/src/tags.txt
 delete mode 100644 ext/tinycbor/src/tinycbor-version.h
 delete mode 100644 ext/tinycbor/src/tinycbor.pro
 delete mode 100644 ext/tinycbor/src/utf8_p.h
 delete mode 100644 ext/tinycbor/tests/.gitignore
 delete mode 100644 ext/tinycbor/tests/cpp/cpp.pro
 delete mode 100644 ext/tinycbor/tests/cpp/tst_cpp.cpp
 delete mode 100644 ext/tinycbor/tests/encoder/encoder.pro
 delete mode 100644 ext/tinycbor/tests/encoder/tst_encoder.cpp
 delete mode 100644 ext/tinycbor/tests/parser/parser.pro
 delete mode 100644 ext/tinycbor/tests/parser/tst_parser.cpp
 delete mode 100644 ext/tinycbor/tests/tests.pro
 delete mode 100644 ext/tinycbor/tests/tojson/tojson.pro
 delete mode 100644 ext/tinycbor/tests/tojson/tst_tojson.cpp
 delete mode 100644 ext/tinycbor/tinycbor.pc.in
 delete mode 100644 ext/tinycbor/tools/cbordump/cbordump.c
 delete mode 100644 ext/tinycbor/tools/cbordump/cbordump.pro
 delete mode 100644 ext/tinycbor/tools/json2cbor/json2cbor.c
 delete mode 100644 ext/tinycbor/tools/json2cbor/json2cbor.pro
 delete mode 100644 samples/smp_svr/zephyr/README.rst

-- 
To stop receiving notification emails like this one, please contact
ccoll...@apache.org.

Reply via email to