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