D | common.py | 1989 def GetUserImage(which, tmpdir, input_zip, argument 2030 img = GetSparseImage(which, tmpdir, input_zip, allow_shared_blocks, 2035 return GetNonSparseImage(which, tmpdir, hashtree_info_generator) 2038 def GetNonSparseImage(which, tmpdir, hashtree_info_generator=None): argument 2049 path = os.path.join(tmpdir, "IMAGES", which + ".img") 2050 mappath = os.path.join(tmpdir, "IMAGES", which + ".map") 2059 def GetSparseImage(which, tmpdir, input_zip, allow_shared_blocks, argument 2078 path = os.path.join(tmpdir, "IMAGES", which + ".img") 2079 mappath = os.path.join(tmpdir, "IMAGES", which + ".map") 2109 if which == 'system' and not arcname.startswith('system'): [all …]
|