File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,16 @@ Each implementation requires a set of autogenerated files describing the secure
34
34
` release.py ` is the script assigned with compiling the secure images:
35
35
36
36
```
37
- usage: release.py [-h] [-m MCU]
37
+ usage: release.py [-h] [-m MCU] [-d]
38
38
39
39
optional arguments:
40
40
-h, --help show this help message and exit
41
41
-m MCU, --mcu MCU build for the given MCU
42
+ -d, --debug set build profile to debug
42
43
```
43
44
44
- When ` MCU ` is not specified, the script compiles all the images for all the targets.
45
+ * When ` MCU ` is not specified, the script compiles all the images for all the targets.
46
+ * When ` -d/--debug ` is not specified, the script compiles the images using the release profile.
45
47
46
48
This script should be run in following scenarios:
47
49
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def get_parser():
132
132
metavar = "MCU" )
133
133
134
134
parser .add_argument ("-d" , "--debug" ,
135
- help = "build for the given MCU " ,
135
+ help = "set build profile to debug " ,
136
136
action = "store_true" ,
137
137
default = False )
138
138
You can’t perform that action at this time.
0 commit comments