imgtool: make "align" command line parameter optional

Align parameter should be optional:
- it has a default value.
- it is not used for non-swap update modes.

Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
This commit is contained in:
Andrej Butok 2023-10-05 13:00:17 +02:00 committed by David Brown
parent 301d565560
commit 25b7c7a8e7
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ class BasedIntParamType(click.ParamType):
'keyword to automatically generate it from the image version.')
@click.option('-v', '--version', callback=validate_version, required=True)
@click.option('--align', type=click.Choice(['1', '2', '4', '8', '16', '32']),
required=True)
required=False)
@click.option('--max-align', type=click.Choice(['8', '16', '32']),
required=False,
help='Maximum flash alignment. Set if flash alignment of the '