Skip to content

Commit

Permalink
[microTVM] Zephyr: Set 'choices' for ProjectOption 'verbose' (apache#…
Browse files Browse the repository at this point in the history
…8968)

Set 'choices' tuple returned for ProjectOption 'verbose' as a double
of True and False so TVMC and other interfaces can easily determine
it's a boolean option.

Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
  • Loading branch information
gromero authored and ylc committed Sep 29, 2021
1 parent 220f4ce commit 3d1e97e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def _get_nrf_device_args(options):
help="Type of project to generate.",
choices=tuple(PROJECT_TYPES),
),
server.ProjectOption("verbose", help="Run build with verbose output."),
server.ProjectOption("verbose", help="Run build with verbose output.", choices=(True, False)),
server.ProjectOption(
"west_cmd",
help=(
Expand Down

0 comments on commit 3d1e97e

Please sign in to comment.