Searched refs:unsparse_image_path (Results 1 – 2 of 2) sorted by relevance
/build/make/tools/releasetools/ |
D | build_image.py | 96 unsparse_image_path = image_path 98 unsparse_image_path = UnsparseImage(image_path, replace=False) 101 cmd = ["tune2fs", "-l", unsparse_image_path] 103 cmd = ["fsck.f2fs", "-l", unsparse_image_path] 109 os.remove(unsparse_image_path) 120 unsparse_image_path = "unsparse_" + os.path.basename(sparse_image_path) 121 unsparse_image_path = os.path.join(img_dir, unsparse_image_path) 122 if os.path.exists(unsparse_image_path): 124 os.unlink(unsparse_image_path) 126 return unsparse_image_path [all …]
|
D | verity_utils.py | 119 def Append2Simg(sparse_image_path, unsparse_image_path, error_message): argument 129 cmd = ["append2simg", sparse_image_path, unsparse_image_path]
|