Update docs for PSA tools

pull/10010/head
Oren Cohen 2019-03-08 14:17:58 +02:00 committed by Oren Cohen
parent 774294d1e2
commit 91dabb535a
2 changed files with 5 additions and 3 deletions

View File

@ -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:
```
usage: release.py [-h] [-m MCU]
usage: release.py [-h] [-m MCU] [-d]
optional arguments:
-h, --help show this help message and exit
-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:

View File

@ -132,7 +132,7 @@ def get_parser():
metavar="MCU")
parser.add_argument("-d", "--debug",
help="build for the given MCU",
help="set build profile to debug",
action="store_true",
default=False)