Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 852b8de4 authored by Furquan Shaikh's avatar Furquan Shaikh
Browse files

releasetools: Fix parameters for vboot_signer



With the change in vboot_signer (CL:744257), an additional parameter
is required to vboot_signer script. This change adds the required
parameter to releasetools as well.

BUG=23076037

Change-Id: Ice5329578b3a9bc459e278a9d404a1981b35ca88
Signed-off-by: default avatarFurquan Shaikh <furquan@google.com>
parent e8c21223
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -390,7 +390,9 @@ def BuildBootableImage(sourcedir, fs_config_file, info_dict=None):
    img_keyblock = tempfile.NamedTemporaryFile()
    img_keyblock = tempfile.NamedTemporaryFile()
    cmd = [info_dict["vboot_signer_cmd"], info_dict["futility"],
    cmd = [info_dict["vboot_signer_cmd"], info_dict["futility"],
           img_unsigned.name, info_dict["vboot_key"] + ".vbpubk",
           img_unsigned.name, info_dict["vboot_key"] + ".vbpubk",
           info_dict["vboot_key"] + ".vbprivk", img_keyblock.name,
           info_dict["vboot_key"] + ".vbprivk",
           info_dict["vboot_subkey"] + ".vbprivk",
           img_keyblock.name,
           img.name]
           img.name]
    p = Run(cmd, stdout=subprocess.PIPE)
    p = Run(cmd, stdout=subprocess.PIPE)
    p.communicate()
    p.communicate()