Mynewt app: Remove .OVERWITE suffix from pkg.deps

The boot loader app needs all the base dependencies, whether or not
`BOOT_SERIAL` is enabled.  Therefore, it makes sense for the serial boot
loader to add to, rather than replace, the dependency list.

This bug in the pkg.yml file went unnoticed ealier because of an issue
in newt: it used to effectively ignore the `.OVERWRITE` suffix when it
was applied to `pkg.deps`.

Signed-off-by: Christopher Collins <ccollins@apache.org>
This commit is contained in:
Christopher Collins 2018-02-23 15:13:16 -08:00 committed by Fabio Utzig
parent 3f9ec900c4
commit db974f2fc2
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ pkg.deps:
- "@apache-mynewt-core/kernel/os"
- "@apache-mynewt-core/sys/console/minimal"
pkg.deps.BOOT_SERIAL.OVERWRITE:
pkg.deps.BOOT_SERIAL:
- "@mcuboot/boot/boot_serial"