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 2016/09/22 03:26:30 UTC

incubator-mynewt-core git commit: Re-enable shell for apps that need it.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop d2625362a -> a87a31d71


Re-enable shell for apps that need it.


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/a87a31d7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/a87a31d7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/a87a31d7

Branch: refs/heads/develop
Commit: a87a31d71ffead84fdbb00378984ece267ff3496
Parents: d262536
Author: Christopher Collins <cc...@apache.org>
Authored: Wed Sep 21 20:26:18 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Wed Sep 21 20:26:18 2016 -0700

----------------------------------------------------------------------
 apps/bletiny/pkg.yml |  3 +++
 apps/blinky/pkg.yml  |  4 ++++
 apps/slinky/pkg.yml  |  3 +++
 apps/splitty/pkg.yml | 11 ++++-------
 4 files changed, 14 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/a87a31d7/apps/bletiny/pkg.yml
----------------------------------------------------------------------
diff --git a/apps/bletiny/pkg.yml b/apps/bletiny/pkg.yml
index 95f77db..465edc4 100644
--- a/apps/bletiny/pkg.yml
+++ b/apps/bletiny/pkg.yml
@@ -37,6 +37,9 @@ pkg.deps:
 ### Disable some features to make bletiny small enough to fit on the nRF51.
 ### These features can be re-enabled in the target definition.
 pkg.syscfg_vals:
+    # Enable the shell task.
+    SHELL_TASK: 1
+
     # Set log level to info (disable debug logging).
     LOG_LEVEL: 1
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/a87a31d7/apps/blinky/pkg.yml
----------------------------------------------------------------------
diff --git a/apps/blinky/pkg.yml b/apps/blinky/pkg.yml
index 64bbace..a63becb 100644
--- a/apps/blinky/pkg.yml
+++ b/apps/blinky/pkg.yml
@@ -32,3 +32,7 @@ pkg.deps:
     - sys/config
     - sys/log
     - sys/stats
+
+pkg.syscfg_vals:
+    # Enable the shell task.
+    SHELL_TASK: 1

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/a87a31d7/apps/slinky/pkg.yml
----------------------------------------------------------------------
diff --git a/apps/slinky/pkg.yml b/apps/slinky/pkg.yml
index e46a86c..4e11759 100644
--- a/apps/slinky/pkg.yml
+++ b/apps/slinky/pkg.yml
@@ -41,4 +41,7 @@ pkg.deps:
     - sys/stats
 
 pkg.syscfg_vals:
+    # Enable the shell task.
+    SHELL_TASK: 1
+
     STATS_NAMES: 1

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/a87a31d7/apps/splitty/pkg.yml
----------------------------------------------------------------------
diff --git a/apps/splitty/pkg.yml b/apps/splitty/pkg.yml
index 576c0c8..d436423 100644
--- a/apps/splitty/pkg.yml
+++ b/apps/splitty/pkg.yml
@@ -39,11 +39,8 @@ pkg.deps:
     - sys/log
     - sys/stats
 
-pkg.cflags:
-    - "-DSTATS_NAME_ENABLE=1"
+pkg.syscfg_vals:
+    # Enable the shell task.
+    SHELL_TASK: 1
 
-pkg.cflags.NFFS:
-    - "-DNFFS_PRESENT"
-
-pkg.cflags.FCB:
-    - "-DFCB_PRESENT"
+    STATS_NAMES: 1