File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -1203,4 +1203,5 @@ config MCUBOOT_VERIFY_IMG_ADDRESS
1203
1203
also be useful when BOOT_DIRECT_XIP is enabled, to ensure that the image
1204
1204
linked at the correct address is loaded.
1205
1205
1206
+ rsource "Kconfig.minimal"
1206
1207
source "Kconfig.zephyr"
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2025 Nordic Semiconductor ASA
2
+ #
3
+ # SPDX-License-Identifier: Apache-2.0
4
+ #
5
+
6
+ if MCUBOOT
7
+
8
+ config MCUBOOT_MINIMAL
9
+ bool "Configuration to achieve minimal size of MCUboot"
10
+ depends on MCUBOOT
11
+ default n
12
+ help
13
+ Official minimal reference configuration for the most use cases.
14
+
15
+ if MCUBOOT_MINIMAL
16
+
17
+ choice MCUBOOT_MINIMAL_VARIANT
18
+ bool "Variant of MCUboot minimal configuration"
19
+ default MCUBOOT_MINIMAL_FIRST
20
+
21
+ config MCUBOOT_MINIMAL_FIRST
22
+ bool "TODO - first variant"
23
+ help
24
+ TODO - first variant
25
+
26
+ config MCUBOOT_MINIMAL_SECOND
27
+ bool "TODO - second variant"
28
+ help
29
+ TODO - second variant
30
+
31
+ endchoice
32
+
33
+ endif
34
+
35
+ endif
You can’t perform that action at this time.
0 commit comments