2017-07-06 03:36:37 +08:00
|
|
|
# Zephyr sample application.
|
|
|
|
|
2021-10-20 21:27:16 +08:00
|
|
|
In order to successfully deploy an application using MCUboot, it is
|
2017-07-06 03:36:37 +08:00
|
|
|
necessary to build at least one other binary: the application itself.
|
|
|
|
It is beyond the scope of this documentation to describe what an
|
|
|
|
application is able to do, however a working example is certainly
|
|
|
|
useful.
|
|
|
|
|
|
|
|
Please see the comments in the Makefile in this directory for more
|
|
|
|
details on how to build and test this application.
|
2019-06-26 00:13:20 +08:00
|
|
|
|
|
|
|
Note that this sample uses the "ninja" build tool, which can be
|
|
|
|
installed on most systems using the system package manager, e.g., for
|
|
|
|
a Debian-based distro:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ sudo apt-get install ninja
|
|
|
|
```
|
|
|
|
|
|
|
|
or in Fedora:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ sudo dnf install ninja
|
|
|
|
```
|