You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2019/01/16 18:46:10 UTC

[mynewt-newt] branch master updated (e484676 -> 7ade6dc)

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-newt.git.


    from e484676  newt/mfg: Update documentation
     new fceeaf4  larva: Replace `swapkey` with `swapisk`, `swapkek`
     new 09214c9  Create new package: artifact/sec
     new 935cc5c  newt: Allow mfgimages to be signed
     new fd99719  larva: `mfg rmsigs` and `mfg addsig` command
     new 7ade6dc  larva: add `mfg hashable` command.

The 1339 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:
 artifact/image/create.go                     | 111 +++++++------
 artifact/image/keys_test.go                  |  63 ++-----
 artifact/image/v1.go                         |  27 +--
 artifact/manifest/mfg_manifest.go            |   6 +
 artifact/sec/encrypt.go                      |  42 +++++
 artifact/{image => sec}/key.go               |  98 +++--------
 artifact/{image/encrypted.go => sec/pkcs.go} |   3 +-
 larva/cli/image_cmds.go                      |   3 +-
 larva/cli/mfg_cmds.go                        | 236 +++++++++++++++++++++++++--
 larva/cli/util.go                            |  11 ++
 larva/lvimg/lvimg.go                         |   9 +-
 larva/lvmfg/lvmfg.go                         |  74 +++++++--
 newt/builder/targetbuild.go                  |   4 +-
 newt/cli/image_cmds.go                       |   5 +-
 newt/cli/mfg_cmds.go                         |  12 +-
 newt/cli/run_cmds.go                         |   4 +-
 newt/imgprod/imgprod.go                      |   7 +-
 newt/imgprod/v1.go                           |   3 +-
 newt/mfg/emit.go                             |  40 ++++-
 newt/mfg/misc.go                             |   5 +-
 20 files changed, 537 insertions(+), 226 deletions(-)
 create mode 100644 artifact/sec/encrypt.go
 rename artifact/{image => sec}/key.go (77%)
 rename artifact/{image/encrypted.go => sec/pkcs.go} (99%)