• Home
  • Raw
  • Download

Lines Matching refs:partition

38       should be matching the entry name, which has partition names in upper
115 --avb_extra_custom_image_key <partition=key>
116 --avb_extra_custom_image_algorithm <partition=algorithm>
118 the specified custom images mounted on the partition. Otherwise it uses
121 --avb_extra_custom_image_extra_args <partition=extra_args>
123 mounted on the partition (e.g. "--signing_helper /path/to/helper"). The
953 def ReplaceAvbPartitionSigningKey(partition):
954 key = OPTIONS.avb_keys.get(partition)
958 algorithm = OPTIONS.avb_algorithms.get(partition)
959 assert algorithm, 'Missing AVB signing algorithm for %s' % (partition,)
962 partition, key, algorithm))
963 misc_info['avb_' + partition + '_algorithm'] = algorithm
964 misc_info['avb_' + partition + '_key_path'] = key
966 extra_args = OPTIONS.avb_extra_args.get(partition)
969 partition, extra_args))
970 if partition in AVB_FOOTER_ARGS_BY_PARTITION:
971 args_key = AVB_FOOTER_ARGS_BY_PARTITION[partition]
973 # custom partition
974 args_key = "avb_{}_add_hashtree_footer_args".format(partition)
977 for partition in AVB_FOOTER_ARGS_BY_PARTITION:
978 ReplaceAvbPartitionSigningKey(partition)
987 for partition, args_key in AVB_FOOTER_ARGS_BY_PARTITION.items():
995 fingerprint_key = 'com.android.build.{}.fingerprint'.format(partition)
1005 print('Rewriting AVB prop for {}:\n'.format(partition))
1105 r'(\s+partition="(?P<PARTITION>.*?)")?$',
1231 partition, key = a.split("=")
1232 OPTIONS.avb_keys[partition] = key
1234 partition, algorithm = a.split("=")
1235 OPTIONS.avb_algorithms[partition] = algorithm
1240 partition, extra_args = a.split("=", 1)
1241 OPTIONS.avb_extra_args[partition] = extra_args