Skip to content

Commit bfd529c

Browse files
JordanYatesnordicjm
authored andcommitted
boot: zephyr: fix kconfig indentation
Fix incorrect indentation on multiple symbols. Signed-off-by: Jordan Yates <jordan@embeint.com>
1 parent 234c66e commit bfd529c

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

boot/zephyr/Kconfig

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -914,12 +914,12 @@ config BOOT_FIH_PROFILE_HIGH
914914
endchoice
915915

916916
config BOOT_USE_BENCH
917-
bool "Benchmark code"
918-
help
919-
If y, adds support for simple benchmarking that can record
920-
time intervals between two calls. The time printed depends
921-
on the particular Zephyr target, and is generally ticks of a
922-
specific board-specific timer.
917+
bool "Benchmark code"
918+
help
919+
If y, adds support for simple benchmarking that can record
920+
time intervals between two calls. The time printed depends
921+
on the particular Zephyr target, and is generally ticks of a
922+
specific board-specific timer.
923923

924924
module = MCUBOOT
925925
module-str = MCUBoot bootloader
@@ -1029,7 +1029,7 @@ config UPDATEABLE_IMAGE_NUMBER
10291029
config BOOT_VERSION_CMP_USE_BUILD_NUMBER
10301030
bool "Use build number while comparing image version"
10311031
depends on (UPDATEABLE_IMAGE_NUMBER > 1) || BOOT_DIRECT_XIP || \
1032-
BOOT_RAM_LOAD || MCUBOOT_DOWNGRADE_PREVENTION
1032+
BOOT_RAM_LOAD || MCUBOOT_DOWNGRADE_PREVENTION
10331033
help
10341034
By default, the image version comparison relies only on version major,
10351035
minor and revision. Enable this option to take into account the build
@@ -1064,11 +1064,11 @@ config MCUBOOT_DOWNGRADE_PREVENTION_SECURITY_COUNTER
10641064
depends on MCUBOOT_DOWNGRADE_PREVENTION
10651065
depends on (BOOT_SWAP_USING_MOVE || BOOT_SWAP_USING_SCRATCH || BOOT_SWAP_USING_OFFSET)
10661066
help
1067-
Security counter is used for version eligibility check instead of pure
1068-
version. When this option is set, any upgrade must have greater or
1069-
equal security counter value.
1070-
Because of the acceptance of equal values it allows for software
1071-
downgrades to some extent.
1067+
Security counter is used for version eligibility check instead of pure
1068+
version. When this option is set, any upgrade must have greater or
1069+
equal security counter value.
1070+
Because of the acceptance of equal values it allows for software
1071+
downgrades to some extent.
10721072

10731073
config MCUBOOT_HW_DOWNGRADE_PREVENTION_COUNTER_LIMITED
10741074
bool "HW based downgrade prevention counter has limited number of updates"
@@ -1168,7 +1168,7 @@ config MCUBOOT_BOOT_BANNER
11681168
*** Using Zephyr OS build v3.6.0-2607-gd0be2010c31f ***
11691169

11701170
config BOOT_BANNER_STRING
1171-
default "Using Zephyr OS build" if MCUBOOT_BOOT_BANNER
1171+
default "Using Zephyr OS build" if MCUBOOT_BOOT_BANNER
11721172

11731173
config MCUBOOT_USE_TLV_ALLOW_LIST
11741174
bool "Check unprotected TLVs against allow list"
@@ -1322,9 +1322,9 @@ config MCUBOOT_DEVICE_SETTINGS
13221322
# Hidden selector for device-specific settings
13231323
bool
13241324
default y
1325-
# CPU options
1325+
# CPU options
13261326
select MCUBOOT_DEVICE_CPU_CORTEX_M0 if CPU_CORTEX_M0
1327-
# Enable flash page layout if available
1327+
# Enable flash page layout if available
13281328
select FLASH_PAGE_LAYOUT if FLASH_HAS_PAGE_LAYOUT
13291329
# Enable flash_map module as flash I/O back-end
13301330
select FLASH_MAP
@@ -1364,23 +1364,23 @@ config MCUBOOT_BOOTUTIL_LIB_OWN_LOG
13641364
bool
13651365

13661366
config MCUBOOT_CHECK_HEADER_LOAD_ADDRESS
1367-
bool "Use load address to verify application is in proper slot"
1368-
help
1369-
The bootloader will use the load address, from the image header,
1370-
to verify that binary is in slot designated for its execution.
1371-
When not selected reset vector, read from image, is used for
1372-
the same purpose.
1367+
bool "Use load address to verify application is in proper slot"
1368+
help
1369+
The bootloader will use the load address, from the image header,
1370+
to verify that binary is in slot designated for its execution.
1371+
When not selected reset vector, read from image, is used for
1372+
the same purpose.
13731373

13741374
config MCUBOOT_VERIFY_IMG_ADDRESS
13751375
bool "Verify reset address of image in secondary slot [DEPRECATED]"
1376-
select DEPRECATED
1376+
select DEPRECATED
13771377
depends on UPDATEABLE_IMAGE_NUMBER > 1
13781378
depends on !BOOT_ENCRYPT_IMAGE
13791379
depends on ARM
13801380
default y if BOOT_UPGRADE_ONLY
13811381
help
1382-
This option is deprecated, please use MCUBOOT_CHECK_HEADER_LOAD_ADDRESS
1383-
instead.
1382+
This option is deprecated, please use MCUBOOT_CHECK_HEADER_LOAD_ADDRESS
1383+
instead.
13841384
Verify that the reset address in the image located in the secondary slot
13851385
is contained within the corresponding primary slot. This is recommended
13861386
if swapping is not used (that is, BOOT_UPGRADE_ONLY is set). If a user

0 commit comments

Comments
 (0)