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/10/22 01:26:03 UTC

[2/3] incubator-mynewt-core git commit: config; unable to build with config on NFFS. make FCB settings conditional on CONFIG_FCB being enabled. And NFFS settings conditional on CONFIG_NFFS being enabled.

config; unable to build with config on NFFS. make FCB settings
conditional on CONFIG_FCB being enabled. And NFFS settings conditional
on CONFIG_NFFS being enabled.


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

Branch: refs/heads/develop
Commit: 85af3c45a74ca160cdc07cd1e6cb435142565f00
Parents: 497c291
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Oct 21 18:24:09 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Oct 21 18:24:09 2016 -0700

----------------------------------------------------------------------
 sys/config/syscfg.yml | 31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/85af3c45/sys/config/syscfg.yml
----------------------------------------------------------------------
diff --git a/sys/config/syscfg.yml b/sys/config/syscfg.yml
index 153308b..3017df0 100644
--- a/sys/config/syscfg.yml
+++ b/sys/config/syscfg.yml
@@ -7,6 +7,22 @@ syscfg.defs:
         restrictions:
             - '!CONFIG_NFFS'
             - 'CONFIG_FCB_FLASH_AREA'
+    CONFIG_NFFS:
+        description: 'TBD'
+        value: 0
+        restrictions:
+            - '!CONFIG_FCB'
+    CONFIG_NEWTMGR:
+        description: 'TBD'
+        value: 0
+
+    CONFIG_CLI:
+        description: 'TBD'
+        value: 0
+        restrictions:
+            - 'SHELL_TASK'
+
+syscfg.defs.CONFIG_FCB:
     CONFIG_FCB_FLASH_AREA:
         description: 'TBD'
         type: 'flash_owner'
@@ -15,11 +31,7 @@ syscfg.defs:
         description: 'TBD'
         value: 0xc09f6e5e
 
-    CONFIG_NFFS:
-        description: 'TBD'
-        value: 0
-        restrictions:
-            - '!CONFIG_FCB'
+syscfg.defs.CONFIG_NFFS:
     CONFIG_NFFS_DIR:
         description: 'TBD'
         value: '"/cfg"'
@@ -30,12 +42,3 @@ syscfg.defs:
         description: 'TBD'
         value: 32
 
-    CONFIG_NEWTMGR:
-        description: 'TBD'
-        value: 0
-
-    CONFIG_CLI:
-        description: 'TBD'
-        value: 0
-        restrictions:
-            - 'SHELL_TASK'