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:
parent
3f9ec900c4
commit
db974f2fc2
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue