Searched refs:parser_build (Results 1 – 1 of 1) sorted by relevance
/system/extras/verity/ |
D | build_verity_metadata.py | 96 parser_build = subparsers.add_parser('build') variable 97 parser_build.add_argument('blocks', type=int, help='data image blocks') 98 parser_build.add_argument('metadata_image', action='store', help='metadata image') 99 parser_build.add_argument('root_hash', action='store', help='root hash') 100 parser_build.add_argument('salt', action='store', help='salt') 101 parser_build.add_argument('block_device', action='store', help='block device') 102 parser_build.add_argument('signer_path', action='store', help='verity signer path') 103 parser_build.add_argument('signing_key', action='store', help='verity signing key') 104 parser_build.add_argument('--signer_args', action='store', help='verity signer args') 105 parser_build.add_argument('--verity_disable', action='store_true', [all …]
|