aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/nrf/README.md
Commit message (Collapse)AuthorAgeFilesLines
* feat: add support for nrf54 to embassy-boot examplesUlf Lilleengen2025-12-081-1/+1
|
* Support codesigning in the firmware updaterhuntc2023-01-121-1/+1
| | | | This commit provides a method to verify that firmware has been signed with a private key given its public key. The implementation uses ed25519-dalek as the signature verifier. An "ed25519" feature is required to enable the functionality. When disabled (the default), calling the firmware updater's verify method will return a failure.
* feat: compile bootloader examples for nRF91Ulf Lilleengen2023-01-041-5/+5
| | | | | | | * Add nRF91 as target in CI builds * Add example linker scripts for nrf91 * Make less nRF52 assumptions example config * Add llvm-tools-preview required for cargo objcopy example
* Cleaned up some doc and memory layouthuntc2023-01-041-0/+4
| | | | The memory layout of the s140 crept into a number of memory files, which can cause confusion.
* Move bootloader main to examplesUlf Lilleengen2022-06-241-0/+34
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.