Home | History | Annotate | Download | only in releasetools

Lines Matching full:system

97   """Turn the contents of SYSTEM into a system image and store it in
100 print "creating system.img..."
105 # mkyaffs2image. It wants "system" but we have a directory named
106 # "SYSTEM", so create a symlink.
108 os.symlink(os.path.join(OPTIONS.input_tmp, "SYSTEM"),
109 os.path.join(OPTIONS.input_tmp, "system"))
113 # os.path.join(OPTIONS.input_tmp, "system"))
120 if fstab and fstab["/system"].fs_type.startswith("ext"):
125 build_command.extend([os.path.join(OPTIONS.input_tmp, "system"), img.name,
126 fstab["/system"].fs_type, "system"])
134 build_command.append(os.path.join(OPTIONS.input_tmp, "system"))
139 assert p.returncode == 0, "build system.img image failed"
145 common.CheckSize(data, "system.img", OPTIONS.info_dict)
146 common.ZipWriteStr(output_zip, "system.img", data)