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 2016/12/27 19:24:33 UTC

[1/4] incubator-mynewt-core git commit: ci40; linker script location now needs full path.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop ec88e3db2 -> d766b1ca8


ci40; linker script location now needs full path.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/3ee2a161
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/3ee2a161
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/3ee2a161

Branch: refs/heads/develop
Commit: 3ee2a16106bd4e7cd66a7d5c2286a1b98a700542
Parents: ec88e3d
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Dec 27 10:50:47 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Dec 27 10:50:47 2016 -0800

----------------------------------------------------------------------
 hw/bsp/ci40/bsp.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/3ee2a161/hw/bsp/ci40/bsp.yml
----------------------------------------------------------------------
diff --git a/hw/bsp/ci40/bsp.yml b/hw/bsp/ci40/bsp.yml
index e45db11..e83aa55 100644
--- a/hw/bsp/ci40/bsp.yml
+++ b/hw/bsp/ci40/bsp.yml
@@ -19,7 +19,7 @@
 
 bsp.arch: mips
 bsp.compiler: compiler/mips
-bsp.linkerscript: "uhi32.ld"
+bsp.linkerscript: "hw/bsp/ci40/uhi32.ld"
 
 bsp.flash_map:
     areas:
@@ -51,4 +51,4 @@ bsp.flash_map:
             user_id: 1
             device: 0
             offset: 0x00000000
-            size: 0kB
\ No newline at end of file
+            size: 0kB


[4/4] incubator-mynewt-core git commit: sysinit; remove dependency of bootutil. Replace it with flash_map for now.

Posted by ma...@apache.org.
sysinit; remove dependency of bootutil. Replace it with flash_map for now.


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

Branch: refs/heads/develop
Commit: d766b1ca805a42c9ca999fcccbd0408da19a8082
Parents: 066cb45
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Dec 27 11:24:02 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Dec 27 11:24:02 2016 -0800

----------------------------------------------------------------------
 sys/sysinit/include/sysinit/sysinit.h | 2 +-
 sys/sysinit/pkg.yml                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/d766b1ca/sys/sysinit/include/sysinit/sysinit.h
----------------------------------------------------------------------
diff --git a/sys/sysinit/include/sysinit/sysinit.h b/sys/sysinit/include/sysinit/sysinit.h
index 32839aa..13d8ed8 100644
--- a/sys/sysinit/include/sysinit/sysinit.h
+++ b/sys/sysinit/include/sysinit/sysinit.h
@@ -20,8 +20,8 @@
 #ifndef H_SYSINIT_
 #define H_SYSINIT_
 
+#include <inttypes.h>
 #include "syscfg/syscfg.h"
-#include "bootutil/bootutil.h"
 
 #if MYNEWT_VAL(SPLIT_APPLICATION)
 #include "split/split.h"

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/d766b1ca/sys/sysinit/pkg.yml
----------------------------------------------------------------------
diff --git a/sys/sysinit/pkg.yml b/sys/sysinit/pkg.yml
index f45e07a..5f06619 100644
--- a/sys/sysinit/pkg.yml
+++ b/sys/sysinit/pkg.yml
@@ -25,5 +25,5 @@ pkg.keywords:
     - init
 
 pkg.deps:
-    - boot/bootutil
     - kernel/os
+    - sys/flash_map


[2/4] incubator-mynewt-core git commit: ci40; add dependency to uart_hal driver, if uart0/uart1 are included.

Posted by ma...@apache.org.
ci40; add dependency to uart_hal driver, if uart0/uart1 are included.


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

Branch: refs/heads/develop
Commit: fe2f20764155e4713b310973c9bb12e47853e16c
Parents: 3ee2a16
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Dec 27 10:51:23 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Dec 27 10:51:23 2016 -0800

----------------------------------------------------------------------
 hw/bsp/ci40/pkg.yml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/fe2f2076/hw/bsp/ci40/pkg.yml
----------------------------------------------------------------------
diff --git a/hw/bsp/ci40/pkg.yml b/hw/bsp/ci40/pkg.yml
index eba5614..d202f92 100644
--- a/hw/bsp/ci40/pkg.yml
+++ b/hw/bsp/ci40/pkg.yml
@@ -31,3 +31,9 @@ pkg.keywords:
 pkg.cflags:
 pkg.deps:
     - hw/mcu/mips/danube
+
+pkg.deps.UART_0:
+    - hw/drivers/uart/uart_hal
+
+pkg.deps.UART_1:
+    - hw/drivers/uart/uart_hal


[3/4] incubator-mynewt-core git commit: splitty; no need to include json.h from here.

Posted by ma...@apache.org.
splitty; no need to include json.h from here.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/066cb455
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/066cb455
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/066cb455

Branch: refs/heads/develop
Commit: 066cb45546f9f911b6275e12cc7c3d48d47dc2a9
Parents: fe2f207
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Tue Dec 27 11:17:01 2016 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Tue Dec 27 11:17:01 2016 -0800

----------------------------------------------------------------------
 apps/splitty/src/main.c | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/066cb455/apps/splitty/src/main.c
----------------------------------------------------------------------
diff --git a/apps/splitty/src/main.c b/apps/splitty/src/main.c
index 956ed1f..e172095 100755
--- a/apps/splitty/src/main.c
+++ b/apps/splitty/src/main.c
@@ -34,7 +34,6 @@
 #include <imgmgr/imgmgr.h>
 #include <assert.h>
 #include <string.h>
-#include <json/json.h>
 #include <reboot/log_reboot.h>
 #include <os/os_time.h>
 #include <id/id.h>