forked from wookey-project/bootloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
41 lines (32 loc) · 1.18 KB
/
Copy pathKconfig
File metadata and controls
41 lines (32 loc) · 1.18 KB
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
menu "Bootloader configuration"
config LOADER_MOCKUP
bool "Enable bootloader mockup mode"
if LOADER_MOCKUP
config LOADER_MOCKUP_DFU
bool "Start in DFU mode"
---help---
Boot in DFU mode of the eligible firmware automatically. This
behavor replace a manual push on the DFU button at boot time.
The loader boots the DFU mode of the currently eligible firmware
endif
config LOADER_FW_HASH_CHECK
bool "Check firmware integrity at boot"
---help---
Check that the Firmware image that is going to be booted is
checked for integrity, using the hash data of the firmware header to
compare with.
This does not deactivate the CRC32 check of the firmware
header structure
config LOADER_FLASH_LOCK
bool "Lock flash banks at boot time"
default y
---help---
Lock current flash bank write access in DFU mode (allowing other
bank update) and all banks write access in nominal mode.
config LOADER_FLASH_RDP_CHECK
bool "Check that RDP protection is active at boot time"
default n
---help---
Check if the RDP protection flag is active at boot.
If RDP protection is not active, then reset the board.
endmenu