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

..--

bad-keys/04-Jan-2025-4037

hello-world/04-Jan-2025-8555

mcutests/04-Jan-2025-282276

.gitignoreD04-Jan-202522 32

MakefileD04-Jan-20259 KiB296146

README.mdD04-Jan-2025671 2518

build-boot.shD04-Jan-2025497 2311

build-hello.shD04-Jan-2025507 2311

overlay-ecdsa-p256.confD04-Jan-2025178 53

overlay-rsa.confD04-Jan-2025114 42

overlay-skip-primary-slot-validate.confD04-Jan-2025135 51

overlay-upgrade-only.confD04-Jan-202580 31

run-tests.goD04-Jan-20255.9 KiB291197

run-tests.shD04-Jan-202580 52

test-compile.goD04-Jan-20252.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