forked from PelionIoT/mbed-bootloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbed_lib.json
56 lines (56 loc) · 2.07 KB
/
mbed_lib.json
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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "mbed-bootloader",
"config": {
"application-header-address": {
"help": "Address to the beginning of the application header in flash",
"required": true
},
"application-start-address": {
"help": "Address to the beginning of the active application firmware in flash",
"required": true
},
"application-jump-address": {
"help": "Jump address for running the active application firmware (if different from application-start-address)",
"value": "MBED_CONF_MBED_BOOTLOADER_APPLICATION_START_ADDRESS"
},
"max-application-size": {
"help": "Maximum size of the active application",
"value": "DEFAULT_MAX_APPLICATION_SIZE"
},
"trace": {
"help": "Show boot status and progress on serial output. Disable output to save space on headless devices.",
"value": true,
"macro_name": "MBED_BOOTLOADER_TRACE"
},
"default-max-application-size":{
"help": "The max application size",
"value": "(MBED_ROM_START + MBED_ROM_SIZE - MBED_CONF_MBED_BOOTLOADER_APPLICATION_START_ADDRESS)",
"macro_name": "DEFAULT_MAX_APPLICATION_SIZE"
},
"debug":{
"help": "debug prints enabled",
"value": false,
"macro_name": "MBED_BOOTLOADER_DEBUG"
},
"external-traces-enabled":{
"help": "external traces enabled",
"value": false,
"macro_name": "MBED_BOOTLOADER_EXTERNAL_TRACES_ENABLED"
},
"storage-type": {
"help": "Select the used storage type: TDBSTORE or PDBSTORE",
"accepted_values": ["KVSTORE", "PDBSTORE"],
"value": "PDBSTORE"
}
},
"macros": [
"MBED_FAULT_HANDLER_DISABLED",
"MBEDTLS_USER_CONFIG_FILE=\"bootloader_mbedtls_user_config.h\"",
"Mutex=PlatformMutex"
],
"target_overrides": {
"*": {
"target.features_remove": ["LWIP", "STORAGE"]
}
}
}