diff options
| author | Ulf Lilleengen <[email protected]> | 2022-06-24 19:56:15 +0200 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2022-06-24 19:56:15 +0200 |
| commit | 776be79f7bb10b09e795e2ea93bb795a653c9b4c (patch) | |
| tree | 269046d330ee503c84049bb8fc47baf0297ecb80 /examples/boot/application/nrf/memory.x | |
| parent | 84628d36cf743193cbf0e7d47ef1cfa9fb590890 (diff) | |
Move bootloader main to examples
This should remove some confusion around embassy-boot-* being a library
vs. a binary. The binary is now an example bootloader instead.
Diffstat (limited to 'examples/boot/application/nrf/memory.x')
| -rw-r--r-- | examples/boot/application/nrf/memory.x | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/boot/application/nrf/memory.x b/examples/boot/application/nrf/memory.x new file mode 100644 index 000000000..3a54ca460 --- /dev/null +++ b/examples/boot/application/nrf/memory.x | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | MEMORY | ||
| 2 | { | ||
| 3 | /* NOTE 1 K = 1 KiBi = 1024 bytes */ | ||
| 4 | BOOTLOADER : ORIGIN = 0x00000000, LENGTH = 24K | ||
| 5 | BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K | ||
| 6 | FLASH : ORIGIN = 0x00007000, LENGTH = 64K | ||
| 7 | DFU : ORIGIN = 0x00017000, LENGTH = 68K | ||
| 8 | RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 32K | ||
| 9 | } | ||
| 10 | |||
| 11 | __bootloader_state_start = ORIGIN(BOOTLOADER_STATE); | ||
| 12 | __bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE); | ||
| 13 | |||
| 14 | __bootloader_dfu_start = ORIGIN(DFU); | ||
| 15 | __bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU); | ||
