aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages/bootloader.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'docs/modules/ROOT/pages/bootloader.adoc')
-rw-r--r--docs/modules/ROOT/pages/bootloader.adoc5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/bootloader.adoc b/docs/modules/ROOT/pages/bootloader.adoc
index 3df2daf51..ae92e9d5d 100644
--- a/docs/modules/ROOT/pages/bootloader.adoc
+++ b/docs/modules/ROOT/pages/bootloader.adoc
@@ -20,7 +20,10 @@ In general, the bootloader works on any platform that implements the `embedded-s
20 20
21== Design 21== Design
22 22
23The bootloader divides the storage into 4 main partitions, configured by a linker script: 23image::bootloader_flash.png[Bootloader flash layout]
24
25The bootloader divides the storage into 4 main partitions, configurable when creating the bootloader
26instance or via linker scripts:
24 27
25* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash. 28* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash.
26* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. This partition is only written to by the bootloader. 29* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. This partition is only written to by the bootloader.