aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2020-07-13 01:26:43 -0400
committerRob Austein <sra@hactrn.net>2020-07-13 01:26:43 -0400
commited161c5f748ce4ffa382b78b4718fe1bc6a98a03 (patch)
tree9aa986c33c6000a10f39d9c5f02b4c9b2cf7c742
parent4d6f6ceebcb0422bfcf3443e7f4eb7a9eb1e4338 (diff)
Rewrite script to use subprocess.run(), another python -> python3
-rwxr-xr-xscripts/build-firmware-package.py21
m---------source/sw/pkcs110
2 files changed, 12 insertions, 9 deletions
diff --git a/scripts/build-firmware-package.py b/scripts/build-firmware-package.py
index 6ce49ab..b36b55e 100755
--- a/scripts/build-firmware-package.py
+++ b/scripts/build-firmware-package.py
@@ -9,16 +9,22 @@ import json
import sys
import os
+def run(*args, **kwargs):
+ kwargs.update(stdout = subprocess.PIPE, universal_newlines = True, check = True)
+ return subprocess.run(args, **kwargs)
+
parser = argparse.ArgumentParser()
parser.add_argument("tarfile", type = argparse.FileType("wb"), help = "tarball to create")
parser.add_argument("firmware", nargs = "+", help = "firmware files to stuff into tarball")
args = parser.parse_args()
tar = tarfile.TarFile.open(fileobj = args.tarfile, mode = "w|gz")
-head = subprocess.check_output(("git", "rev-parse", "HEAD")).decode().strip()
-time = subprocess.check_output(("git", "show", "-s", "--format=%ct", "HEAD")).decode().strip()
-commits = dict((path, hash) for hash, path, branch in
- (line.decode().split() for line in subprocess.check_output(("git", "submodule", "status")).splitlines()))
+head = run("git", "rev-parse", "HEAD").stdout.strip()
+time = run("git", "show", "-s", "--format=%ct", "HEAD").stdout.strip()
+commits = { path: hash
+ for hash, path, branch in (
+ line.split()
+ for line in run("git", "submodule", "status").stdout.splitlines() ) }
sha256 = {}
for fn in args.firmware:
@@ -29,11 +35,8 @@ for fn in args.firmware:
manifest = json.dumps(dict(head = head, time = time, commits = commits, sha256 = sha256), indent = 2, sort_keys = True)
if os.path.isdir(os.getenv("GNUPGHOME", "")):
- gpg = subprocess.Popen(("gpg", "--clearsign", "--personal-digest-preferences", "SHA256", "--no-permission-warning"),
- stdin = subprocess.PIPE, stdout = subprocess.PIPE, universal_newlines = True)
- manifest = gpg.communicate(manifest)[0]
- if gpg.returncode:
- sys.exit("gpg failed")
+ manifest = run("gpg", "--clearsign", "--personal-digest-preferences", "SHA256", "--no-permission-warning",
+ input = manifest).stdout
with tempfile.NamedTemporaryFile("w+") as f:
os.fchmod(f.fileno(), 0o644)
diff --git a/source/sw/pkcs11 b/source/sw/pkcs11
-Subproject bf8e254c435c972a7ab28700eab48a2b6ae79c5
+Subproject 3b33d6df40d6c6b12611ece5c45592d95bd4c12