mirror of https://github.com/ARMmbed/mbed-os.git
Update docs for PSA tools
parent
774294d1e2
commit
91dabb535a
|
@ -34,14 +34,16 @@ Each implementation requires a set of autogenerated files describing the secure
|
||||||
`release.py` is the script assigned with compiling the secure images:
|
`release.py` is the script assigned with compiling the secure images:
|
||||||
|
|
||||||
```
|
```
|
||||||
usage: release.py [-h] [-m MCU]
|
usage: release.py [-h] [-m MCU] [-d]
|
||||||
|
|
||||||
optional arguments:
|
optional arguments:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
-m MCU, --mcu MCU build for the given MCU
|
-m MCU, --mcu MCU build for the given MCU
|
||||||
|
-d, --debug set build profile to debug
|
||||||
```
|
```
|
||||||
|
|
||||||
When `MCU ` is not specified, the script compiles all the images for all the targets.
|
* When `MCU ` is not specified, the script compiles all the images for all the targets.
|
||||||
|
* When `-d/--debug` is not specified, the script compiles the images using the release profile.
|
||||||
|
|
||||||
This script should be run in following scenarios:
|
This script should be run in following scenarios:
|
||||||
|
|
||||||
|
|
|
@ -132,7 +132,7 @@ def get_parser():
|
||||||
metavar="MCU")
|
metavar="MCU")
|
||||||
|
|
||||||
parser.add_argument("-d", "--debug",
|
parser.add_argument("-d", "--debug",
|
||||||
help="build for the given MCU",
|
help="set build profile to debug",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
default=False)
|
default=False)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue