forked from nrfconnect/sdk-mcuboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pm.yml
44 lines (38 loc) · 1.31 KB
/
pm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <autoconf.h>
mcuboot:
size: CONFIG_PM_PARTITION_SIZE_MCUBOOT
placement:
before: [mcuboot_primary]
mcuboot_primary_app:
# All images to be placed in MCUboot's slot 0 should be placed in this
# partition
span: [app]
mcuboot_primary:
span: [mcuboot_pad, mcuboot_primary_app]
# Partition for secondary slot is not created if building in single applicaton
# slot configuration.
#if !defined(CONFIG_SINGLE_APPLICATION_SLOT)
mcuboot_secondary:
share_size: [mcuboot_primary]
placement:
align: {start: CONFIG_FPROTECT_BLOCK_SIZE}
after: mcuboot_primary
#endif
#if !defined(CONFIG_BOOT_SWAP_USING_MOVE) && !defined(CONFIG_SINGLE_APPLICATION_SLOT)
mcuboot_scratch:
size: CONFIG_PM_PARTITION_SIZE_MCUBOOT_SCRATCH
placement:
after: app
align: {start: CONFIG_FPROTECT_BLOCK_SIZE}
#endif
# Padding placed before image to boot. This reserves space for the MCUboot image header
# and it ensures that the boot image gets linked with the correct address offset in flash.
mcuboot_pad:
# MCUboot pad must be placed before the 'spm' partition if that is present.
# If 'spm' partition is not present, it must be placed before the 'app'.
size: CONFIG_PM_PARTITION_SIZE_MCUBOOT_PAD
placement:
before: [mcuboot_primary_app]
#ifdef CONFIG_FPROTECT
align: {start: CONFIG_FPROTECT_BLOCK_SIZE}
#endif