Searched refs:image_path (Results 1 – 9 of 9) 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 | 330 image_path = os.path.join(input_tmp, 'OTA', image) 332 image_path = os.path.join(input_tmp, 'IMAGES', image) 333 if not os.path.exists(image_path): 336 cmd = ['boot_signer', '-verify', image_path, '-certificate', verity_key] 377 image_path = os.path.join(input_tmp, 'IMAGES', image) 383 if not os.path.exists(image_path): 386 cmd = ['verity_verifier', image_path, '-mincrypt', verity_key_mincrypt]
|
D | img_from_target_files.py | 145 for image_path in [name for name in namelist if name.startswith('IMAGES/')]: 146 image = os.path.basename(image_path) 161 entries.append('{}:{}'.format(image_path, image))
|
D | build_image.py | 97 def GetFilesystemCharacteristics(fs_type, image_path, sparse_image=True): argument 107 unsparse_image_path = image_path 109 unsparse_image_path = UnsparseImage(image_path, replace=False) 561 image_path = UnsparseImage(out_file, replace=False) 562 size = GetDiskUsage(image_path) 563 os.remove(image_path)
|
D | test_add_img_to_target_files.py | 47 image_path = os.path.join(path, image + '.img') 48 with open(image_path, 'wb') as image_fp:
|
D | add_img_to_target_files.py | 188 image_path = image_paths[partition] 189 if not os.path.exists(image_path): 190 raise ExternalError('Expected image at path {}'.format(image_path)) 192 care_map = GetCareMap(partition, image_path)
|
D | common.py | 1061 image_path = 'IMAGES/' + partition_name + '.img' 1063 boot_img = ExtractFromInputFile(input_file, image_path) 1065 logger.warning('Failed to read %s', image_path) 1582 def BuildVBMeta(image_path, partitions, name, needed_partitions, argument 1605 cmd = [avbtool, "make_vbmeta_image", "--output", image_path] 1857 def _SignBootableImage(image_path, prebuilt_name, partition_name, argument 1879 cmd = [avbtool, "add_hash_footer", "--image", image_path, 1884 RunAndCheckOutput(["unpack_bootimg", "--boot_img", image_path, "--out", tmpdir])
|
/build/make/tools/releasetools/merge/ |
D | merge_builds.py | 77 image_path = os.path.join(OPTIONS.product_out_framework, "%s.img" % image) 85 os.symlink(image_path, symlink_path)
|
D | merge_meta.py | 330 image_path = os.path.join(images_dir, '{}.img'.format(partition)) 331 if os.path.exists(image_path): 332 partition_size = sparse_img.GetImagePartitionSize(image_path)
|