blob: d65341e4619e6fad466b96f8c977e4b9623a9d65 [file] [log] [blame] [view]
David Brownada28e12017-07-05 13:36:37 -06001# Zephyr sample application.
2
Francesco Servidio4ff0c182021-10-20 15:27:16 +02003In order to successfully deploy an application using MCUboot, it is
David Brownada28e12017-07-05 13:36:37 -06004necessary to build at least one other binary: the application itself.
5It is beyond the scope of this documentation to describe what an
6application is able to do, however a working example is certainly
7useful.
8
9Please see the comments in the Makefile in this directory for more
10details on how to build and test this application.
David Brown358ca1a2019-06-25 10:13:20 -060011
12Note that this sample uses the "ninja" build tool, which can be
13installed on most systems using the system package manager, e.g., for
14a Debian-based distro:
15
16```
17$ sudo apt-get install ninja
18```
19
20or in Fedora:
21
22```
23$ sudo dnf install ninja
24```