You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2015/11/23 20:01:26 UTC

[1/2] incubator-mynewt-larva git commit: Bootloader bug fix; one of the data structures was not initialized anymore.

Repository: incubator-mynewt-larva
Updated Branches:
  refs/heads/master 9a778f621 -> 426d59151


Bootloader bug fix; one of the data structures was not initialized
anymore.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/commit/98aaf5cc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/tree/98aaf5cc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/diff/98aaf5cc

Branch: refs/heads/master
Commit: 98aaf5cc87c6f486b296c5a756478624e43b4daa
Parents: 9a778f6
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Mon Nov 23 10:59:07 2015 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Mon Nov 23 10:59:07 2015 -0800

----------------------------------------------------------------------
 project/boot/src/boot.c | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/blob/98aaf5cc/project/boot/src/boot.c
----------------------------------------------------------------------
diff --git a/project/boot/src/boot.c b/project/boot/src/boot.c
index 4b96ed4..a13c380 100755
--- a/project/boot/src/boot.c
+++ b/project/boot/src/boot.c
@@ -99,6 +99,9 @@ main(void)
     total += 1;
     req.br_num_image_areas = total;
 
+    for (cnt = 0; cnt < total; cnt++) {
+        img_areas[cnt] = cnt;
+    }
     rc = boot_go(&req, &rsp);
     assert(rc == 0);
 


[2/2] incubator-mynewt-larva git commit: Add dependency to stub console.

Posted by ma...@apache.org.
Add dependency to stub console.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/commit/426d5915
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/tree/426d5915
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/diff/426d5915

Branch: refs/heads/master
Commit: 426d591510b777f4231c788d14a2cfed1da06ef3
Parents: 98aaf5c
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Mon Nov 23 10:59:50 2015 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Mon Nov 23 10:59:50 2015 -0800

----------------------------------------------------------------------
 project/bin2img/bin2img.yml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/blob/426d5915/project/bin2img/bin2img.yml
----------------------------------------------------------------------
diff --git a/project/bin2img/bin2img.yml b/project/bin2img/bin2img.yml
index e2ef959..7a99887 100644
--- a/project/bin2img/bin2img.yml
+++ b/project/bin2img/bin2img.yml
@@ -1,3 +1,4 @@
 project.name: bin2img
 project.eggs: 
     - libs/bootutil
+    - libs/console/stub