sys pkg.yml; change the initialization level of system packages a little. Make sure they run after OS, and there's enough space to insert future package sysinit calls in between.
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/e343a7bb Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/e343a7bb Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/e343a7bb Branch: refs/heads/develop Commit: e343a7bbd6d8b0c46819e038013848930ff87e21 Parents: fc60129 Author: Marko Kiiskila <[email protected]> Authored: Thu Jan 26 10:10:18 2017 -0800 Committer: Marko Kiiskila <[email protected]> Committed: Thu Jan 26 10:10:18 2017 -0800 ---------------------------------------------------------------------- sys/console/full/pkg.yml | 2 +- sys/flash_map/pkg.yml | 2 +- sys/stats/full/pkg.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e343a7bb/sys/console/full/pkg.yml ---------------------------------------------------------------------- diff --git a/sys/console/full/pkg.yml b/sys/console/full/pkg.yml index 6a2fd36..e56c7fd 100644 --- a/sys/console/full/pkg.yml +++ b/sys/console/full/pkg.yml @@ -30,4 +30,4 @@ pkg.deps: pkg.apis: console pkg.init: - console_pkg_init: 1 + console_pkg_init: 20 http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e343a7bb/sys/flash_map/pkg.yml ---------------------------------------------------------------------- diff --git a/sys/flash_map/pkg.yml b/sys/flash_map/pkg.yml index 55e826d..23956c2 100644 --- a/sys/flash_map/pkg.yml +++ b/sys/flash_map/pkg.yml @@ -30,4 +30,4 @@ pkg.deps: - sys/mfg pkg.init: - flash_map_init: 1 + flash_map_init: 2 http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e343a7bb/sys/stats/full/pkg.yml ---------------------------------------------------------------------- diff --git a/sys/stats/full/pkg.yml b/sys/stats/full/pkg.yml index 6c92dde..c9f8ca3 100644 --- a/sys/stats/full/pkg.yml +++ b/sys/stats/full/pkg.yml @@ -34,4 +34,4 @@ pkg.deps.STATS_NEWTMGR: - mgmt/mgmt pkg.init: - stats_module_init: 0 + stats_module_init: 10
