• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

bad-keys/03-Aug-2024-4037

hello-world/03-Aug-2024-7951

mcutests/03-Aug-2024-282276

.gitignoreD03-Aug-202422 32

MakefileD03-Aug-20249 KiB296146

README.mdD03-Aug-2024671 2518

build-boot.shD03-Aug-2024497 2311

build-hello.shD03-Aug-2024507 2311

overlay-ecdsa-p256.confD03-Aug-2024178 53

overlay-rsa.confD03-Aug-2024114 42

overlay-skip-primary-slot-validate.confD03-Aug-2024135 51

overlay-upgrade-only.confD03-Aug-202480 31

run-tests.goD03-Aug-20245.9 KiB291197

run-tests.shD03-Aug-202480 52

test-compile.goD03-Aug-20242.5 KiB157112

README.md

1# Zephyr sample application.
2
3In order to successfully deploy an application using MCUboot, it is
4necessary 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.
11
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```
25