Home | History | Annotate | Download | only in releasetools

Lines Matching refs:info_dict

61     self.info_dict = None
403 def _BuildBootableImage(sourcedir, fs_config_file, info_dict=None,
436 if info_dict is None:
437 info_dict = OPTIONS.info_dict
469 args = info_dict.get("mkbootimg_args", None)
473 args = info_dict.get("mkbootimg_version_args", None)
481 if info_dict.get("vboot", None):
492 if (info_dict.get("boot_signer", None) == "true" and
493 info_dict.get("verity_key", None)):
498 info_dict["verity_key"] + ".pk8",
499 info_dict["verity_key"] + ".x509.pem", img.name])
505 elif info_dict.get("vboot", None):
508 cmd = [info_dict["vboot_signer_cmd"], info_dict["futility"],
509 img_unsigned.name, info_dict["vboot_key"] + ".vbpubk",
510 info_dict["vboot_key"] + ".vbprivk",
511 info_dict["vboot_subkey"] + ".vbprivk",
533 info_dict=None):
552 if info_dict is None:
553 info_dict = OPTIONS.info_dict
558 has_ramdisk = (info_dict.get("system_root_image") != "true" or
560 info_dict.get("recovery_as_boot") == "true")
565 info_dict, has_ramdisk)
741 def CheckSize(data, target, info_dict):
752 if info_dict["fstab"]:
755 p = info_dict["fstab"][mount_point]
760 limit = info_dict.get(device + "_size", None)
1361 if OPTIONS.info_dict:
1364 OPTIONS.info_dict.get("blockimgdiff_versions", "1").split(","))
1379 _, self.device = GetTypeAndDevice("/" + partition, OPTIONS.info_dict)
1621 info_dict=None):
1634 if info_dict is None:
1635 info_dict = OPTIONS.info_dict
1637 full_recovery_image = info_dict.get("full_recovery_image", None) == "true"
1638 system_root_image = info_dict.get("system_root_image", None) == "true"
1659 # info_dict instead of source_info_dict.
1660 boot_type, boot_device = GetTypeAndDevice("/boot", info_dict)
1661 recovery_type, recovery_device = GetTypeAndDevice("/recovery", info_dict)