summaryrefslogtreecommitdiff
path: root/utility/dev_make_keypair
diff options
context:
space:
mode:
Diffstat (limited to 'utility/dev_make_keypair')
-rwxr-xr-xutility/dev_make_keypair7
1 files changed, 4 insertions, 3 deletions
diff --git a/utility/dev_make_keypair b/utility/dev_make_keypair
index d1d34ad4..7486d9e1 100755
--- a/utility/dev_make_keypair
+++ b/utility/dev_make_keypair
@@ -56,14 +56,14 @@ function make_pair {
dumpRSAPublicKey -cert "${base}_${len}.crt" > "${base}_${len}.keyb"
# wrap the public key
- vbutil_key \
+ futility vbutil_key \
--pack "${base}.vbpubk" \
--key "${base}_${len}.keyb" \
--version 1 \
--algorithm $alg
# wrap the private key
- vbutil_key \
+ futility vbutil_key \
--pack "${base}.vbprivk" \
--key "${base}_${len}.pem" \
--algorithm $alg
@@ -79,4 +79,5 @@ make_pair "$1" "${2:-4}"
# won't be signed, just checksummed. Developer kernels can only be run in
# non-recovery mode with the developer switch enabled, but it won't hurt us to
# turn on all the flags bits anyway.
-vbutil_keyblock --pack "$1.keyblock" --datapubkey "$1.vbpubk" --flags 15
+futility vbutil_keyblock --pack "$1.keyblock" \
+ --datapubkey "$1.vbpubk" --flags 15