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/06/10 23:36:08 UTC

[1/2] incubator-mynewt-newt git commit: reboot_log: add module ID for reboot log

Repository: incubator-mynewt-newt
Updated Branches:
  refs/heads/develop d82b2eb0e -> 7adc9d334


reboot_log: add module ID for reboot log


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

Branch: refs/heads/develop
Commit: 388d6550fa3a73a3e0771845f0d2b62e35a7aec7
Parents: 3c0d218
Author: Vipul Rahane <vi...@runtime.io>
Authored: Wed Jun 1 16:07:01 2016 -0700
Committer: Vipul Rahane <vi...@runtime.io>
Committed: Wed Jun 1 16:22:45 2016 -0700

----------------------------------------------------------------------
 newtmgr/cli/logs.go | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/388d6550/newtmgr/cli/logs.go
----------------------------------------------------------------------
diff --git a/newtmgr/cli/logs.go b/newtmgr/cli/logs.go
index 2f567d8..234e146 100644
--- a/newtmgr/cli/logs.go
+++ b/newtmgr/cli/logs.go
@@ -52,6 +52,7 @@ const (
 	MODULE_NIMBLE_CTLR uint64 = 3
 	MODULE_NIMBLE_HOST uint64 = 4
 	MODULE_NFFS        uint64 = 5
+	MODULE_REBOOT      uint64 = 6
 	MODULE_MAX         uint64 = 255
 )
 
@@ -70,6 +71,8 @@ func LogModuleToString(lm uint64) string {
 		s = "NIMBLE_HOST"
 	case MODULE_NFFS:
 		s = "NFFS"
+	case MODULE_REBOOT:
+		s = "REBOOT"
 	default:
 		s = "CUSTOM"
 	}


[2/2] incubator-mynewt-newt git commit: This closes #12.

Posted by ma...@apache.org.
This closes #12.

Merge branch 'develop' of https://github.com/vrahane/incubator-mynewt-newt into develop


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

Branch: refs/heads/develop
Commit: 7adc9d334eca6403c2b6e70b49f1d5100118d016
Parents: d82b2eb 388d655
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Jun 10 16:34:30 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Jun 10 16:34:30 2016 -0700

----------------------------------------------------------------------
 newtmgr/cli/logs.go | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/7adc9d33/newtmgr/cli/logs.go
----------------------------------------------------------------------