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:
parent
301d565560
commit
25b7c7a8e7
|
@ -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 '
|
||||
|
|
Loading…
Reference in New Issue