You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2018/11/13 11:12:00 UTC

[mynewt-core] branch travis-testing updated (231920d -> a28be89)

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

utzig pushed a change to branch travis-testing
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.


 discard 231920d  Add RAT reporting to build matrix
     add 0f898e2  fe310: Fix build after _init was added
     add c269cac  Merge pull request #1504 from kasjer/fe310-fix-build
     add dc49fec  Apache Mynewt 1.5.0 release
     add c810223  hw/drivers/sensors: Changes if/else to if for sensor type checks in sensor read function. Previously, sensor read would only callback to PRESSURE type listeners unless the sensor was initialized exclusively as a TEMPERATURE type.
     add d1fc183  sys/log/stub: Add missing stubs
     add f733184  hw/battery: remove `battery_mgr_register()`
     add f36eb4e  hw/battery: Lock mutex in `battery_init()`
     add f4244cf  hw/battery: Return error on failure in CLI cmds
     add 3bf6cb7  hw/battery: Don't open battery device during init
     add 89c5d96  hw/battery: Minor whitespace fix
     add f469516  hal_flash: Add write protection functionality
     add 1e1b129  enc_flash: Add tests for write protection
     add 06a8102  Merge pull request #1490 from kasjer/hal-flash-write-protection
     add c8683f7  hw/sensor: Add missing statics
     add e04b123  hw/sensor: Refactor "sensor read" command handling
     add b59629b  hw/sensor: Remove unused semaphore
     add 030188d  kernel/os: Add missing const to parameters in os_dev
     add 567a822  mbedtls; add mbedtls_gcm_setkey_noalloc(), which allows use of GCM without malloc().
     add b96349a  Merge pull request #1500 from mkiiskila/gcm_setup_nomalloc
     add eeafa66  oic; remove coap observers registered for closing BLE connection.
     add bbd6528  oic; was cancelling periodic notification for all observers when one of them stopped observing.
     add 30d6522  oic; return observer option even updating existing observer with a new token.
     add 1623cd3  Merge pull request #1488 from mkiiskila/ble_free_observers
     add b9b3189  kernel/os: Add helper CONTAINER_OF macro
     add 4ec6afe  lps33Xhw; fix compiler complaint about unassigned return value.
     add 060d4ef  Merge pull request #1513 from mkiiskila/lps33_build_fix
     add dcb5dba  sys/stats: Add missing consts
     add d822f91  hw/sensors: Add missing consts
     add 0d32ff7  hw/scripts; was using bash syntax when filtering EXTRA_JTAG_CMD.
     add a6e4940  Merge pull request #1517 from mkiiskila/extra_jtag_cmd_fix
     add a28be89  Add RAT reporting to build matrix

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   (231920d)
            \
             N -- N -- N   refs/heads/travis-testing (a28be89)

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.

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |   2 +-
 crypto/mbedtls/include/mbedtls/gcm.h               |   8 +
 crypto/mbedtls/src/gcm.c                           |  35 +++
 hw/battery/src/battery.c                           |  20 +-
 hw/battery/src/battery_shell.c                     | 188 +++++++++++----
 .../enc_flash/test/src/testcases/enc_flash_hal.c   |  42 ++++
 hw/drivers/sensors/lps33hw/src/lps33hw.c           |   8 +-
 hw/drivers/sensors/lps33thw/src/lps33thw.c         |   8 +-
 hw/hal/include/hal/hal_flash.h                     |  15 ++
 hw/hal/src/hal_flash.c                             |  33 +++
 hw/mcu/sifive/fe310/src/arch/rv32imac/start.s      |   2 +-
 hw/mcu/sifive/fe310/src/init.c                     |   2 +-
 hw/scripts/common.sh                               |   2 +-
 hw/sensor/include/sensor/sensor.h                  |  15 +-
 hw/sensor/src/sensor.c                             |  17 +-
 hw/sensor/src/sensor_shell.c                       | 259 ++++++++++-----------
 kernel/os/include/os/os_dev.h                      |   8 +-
 kernel/os/include/os/util.h                        |   4 +
 kernel/os/src/os_dev.c                             |   8 +-
 net/oic/src/api/oc_ri.c                            |  39 ++--
 net/oic/src/port/mynewt/ble_adaptor.c              |  16 ++
 repository.yml                                     |   7 +-
 sys/log/stub/include/log/log.h                     |  23 ++
 sys/log/stub/include/log/log_fcb_slot1.h           |   2 +-
 sys/stats/full/include/stats/stats.h               |   8 +-
 sys/stats/full/src/stats.c                         |   6 +-
 sys/stats/stub/include/stats/stats.h               |   2 +-
 27 files changed, 520 insertions(+), 259 deletions(-)