Searched refs:image_path (Results 1 – 10 of 10) sorted by relevance
/build/make/tools/releasetools/ |
D | build_super_image.py | 157 image_path = os.path.join(inp, "IMAGES", "system_other.img") 158 if os.path.isfile(image_path): 159 info_dict["system_other_image"] = image_path 163 image_path = os.path.join(inp, "IMAGES", "{}.img".format(partition)) 164 if not os.path.isfile(image_path): 165 missing_images.append(image_path) 167 info_dict["{}_image".format(partition)] = image_path
|
D | validate_target_files.py | 287 image_path = os.path.join(input_tmp, 'OTA', image) 289 image_path = os.path.join(input_tmp, 'IMAGES', image) 290 if not os.path.exists(image_path): 293 cmd = ['boot_signer', '-verify', image_path, '-certificate', verity_key] 336 image_path = os.path.join(input_tmp, 'IMAGES', image) 342 if not os.path.exists(image_path): 345 cmd = ['verity_verifier', image_path, '-mincrypt', verity_key_mincrypt]
|
D | img_from_target_files.py | 123 for image_path in [name for name in namelist if name.startswith('IMAGES/')]: 124 image = os.path.basename(image_path) 135 entries.append('{}:{}'.format(image_path, image))
|
D | img_from_target_files | 123 for image_path in [name for name in namelist if name.startswith('IMAGES/')]: 124 image = os.path.basename(image_path) 135 entries.append('{}:{}'.format(image_path, image))
|
D | merge_builds.py | 72 image_path = os.path.join(OPTIONS.product_out_framework, "%s.img" % image) 80 os.symlink(image_path, symlink_path)
|
D | test_add_img_to_target_files.py | 45 image_path = os.path.join(path, image + '.img') 46 with open(image_path, 'wb') as image_fp:
|
D | build_image.py | 85 def GetFilesystemCharacteristics(image_path, sparse_image=True): argument 95 unsparse_image_path = image_path 97 unsparse_image_path = UnsparseImage(image_path, replace=False)
|
D | add_img_to_target_files.py | 625 image_path = image_paths[partition] 626 assert os.path.exists(image_path) 628 care_map = GetCareMap(partition, image_path)
|
D | add_img_to_target_files | 625 image_path = image_paths[partition] 626 assert os.path.exists(image_path) 628 care_map = GetCareMap(partition, image_path)
|
D | common.py | 1152 def BuildVBMeta(image_path, partitions, name, needed_partitions): argument 1172 cmd = [avbtool, "make_vbmeta_image", "--output", image_path] 1217 AddAftlInclusionProof(image_path)
|