Home | History | Annotate | Download | only in releasetools

Lines Matching full:build_command

342   build_command = []
366 build_command = ["mkuserimg.sh"]
368 build_command.append(prop_dict["extfs_sparse_flag"])
370 build_command.extend([in_dir, out_file, fs_type,
372 build_command.append(prop_dict["partition_size"])
374 build_command.extend(["-j", prop_dict["journal_size"]])
376 build_command.extend(["-T", str(prop_dict["timestamp"])])
378 build_command.extend(["-C", fs_config])
380 build_command.extend(["-D", target_out])
382 build_command.extend(["-B", prop_dict["block_list"]])
387 build_command.extend(["-d", base_fs_file])
388 build_command.extend(["-L", prop_dict["mount_point"]])
390 build_command.append(prop_dict["selinux_fc"])
392 build_command = ["mksquashfsimage.sh"]
393 build_command.extend([in_dir, out_file])
395 build_command.extend([prop_dict["squashfs_sparse_flag"]])
396 build_command.extend(["-m", prop_dict["mount_point"]])
398 build_command.extend(["-d", target_out])
400 build_command.extend(["-C", fs_config])
402 build_command.extend(["-c", prop_dict["selinux_fc"]])
404 build_command.extend(["-B", prop_dict["block_list"]])
406 build_command.extend(["-z", prop_dict["squashfs_compressor"]])
408 build_command.extend(["-zo", prop_dict["squashfs_compressor_opt"]])
410 build_command.extend(["-b", prop_dict["squashfs_block_size"]])
412 build_command.extend(["-a"])
414 build_command = ["mkf2fsuserimg.sh"]
415 build_command.extend([out_file, prop_dict["partition_size"]])
417 build_command = ["mkyaffs2image", "-f"]
419 build_command.extend(prop_dict["mkyaffs2_extra_flags"].split())
420 build_command.append(in_dir)
421 build_command.append(out_file)
423 build_command.append(prop_dict["selinux_fc"])
424 build_command.append(prop_dict["mount_point"])
441 (ext4fs_output, exit_code) = RunCommand(build_command)
443 (_, exit_code) = RunCommand(build_command)