Home
last modified time | relevance | path

Searched refs:image_path (Results 1 – 10 of 10) sorted by relevance

/build/make/tools/releasetools/
Dbuild_super_image.py157 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
Dvalidate_target_files.py287 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]
Dimg_from_target_files.py123 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))
Dimg_from_target_files123 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))
Dmerge_builds.py72 image_path = os.path.join(OPTIONS.product_out_framework, "%s.img" % image)
80 os.symlink(image_path, symlink_path)
Dtest_add_img_to_target_files.py45 image_path = os.path.join(path, image + '.img')
46 with open(image_path, 'wb') as image_fp:
Dbuild_image.py85 def GetFilesystemCharacteristics(image_path, sparse_image=True): argument
95 unsparse_image_path = image_path
97 unsparse_image_path = UnsparseImage(image_path, replace=False)
Dadd_img_to_target_files.py625 image_path = image_paths[partition]
626 assert os.path.exists(image_path)
628 care_map = GetCareMap(partition, image_path)
Dadd_img_to_target_files625 image_path = image_paths[partition]
626 assert os.path.exists(image_path)
628 care_map = GetCareMap(partition, image_path)
Dcommon.py1152 def BuildVBMeta(image_path, partitions, name, needed_partitions): argument
1172 cmd = [avbtool, "make_vbmeta_image", "--output", image_path]
1217 AddAftlInclusionProof(image_path)