You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2019/01/16 22:29:09 UTC

[mynewt-core] branch master updated: apps: Fix build

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 512bb8e  apps: Fix build
     new 8159f75  Merge pull request #1603 from sjanc/build_fix
512bb8e is described below

commit 512bb8e6ad8c2d8db5a13a1419a32a4f429aaf99
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Wed Jan 16 22:59:36 2019 +0100

    apps: Fix build
    
    modlog requires logs.
    
    Error: Unsatisfied APIs detected:
        * log, required by: sys/log/modlog
---
 apps/flash_loader/pkg.yml | 1 +
 apps/pwm_test/pkg.yml     | 1 +
 apps/trng_test/pkg.yml    | 1 +
 3 files changed, 3 insertions(+)

diff --git a/apps/flash_loader/pkg.yml b/apps/flash_loader/pkg.yml
index 847f67b..3ec85c1 100644
--- a/apps/flash_loader/pkg.yml
+++ b/apps/flash_loader/pkg.yml
@@ -27,3 +27,4 @@ pkg.keywords:
 pkg.deps:
     - "@apache-mynewt-core/kernel/os"
     - "@apache-mynewt-core/sys/console/stub"
+    - "@apache-mynewt-core/sys/log/stub"
diff --git a/apps/pwm_test/pkg.yml b/apps/pwm_test/pkg.yml
index a5e73f3..de11209 100644
--- a/apps/pwm_test/pkg.yml
+++ b/apps/pwm_test/pkg.yml
@@ -29,3 +29,4 @@ pkg.deps:
     - "@apache-mynewt-core/sys/console/full"
     - "@apache-mynewt-core/hw/drivers/pwm"
     - "@apache-mynewt-core/util/easing"
+    - "@apache-mynewt-core/sys/log/stub"
diff --git a/apps/trng_test/pkg.yml b/apps/trng_test/pkg.yml
index 3da3f2b..1dbbafb 100644
--- a/apps/trng_test/pkg.yml
+++ b/apps/trng_test/pkg.yml
@@ -26,3 +26,4 @@ pkg.deps:
     - "@apache-mynewt-core/kernel/os"
     - "@apache-mynewt-core/sys/console/full"
     - "@apache-mynewt-core/hw/drivers/trng"
+    - "@apache-mynewt-core/sys/log/stub"