7 lines
146 B
Bash
7 lines
146 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
. "$srcdir/common.sh"
|
||
|
|
||
|
"$sbsign" --cert "$cert" --key "$key" --output test.signed "$image"
|
||
|
"$sbverify" --cert "$cert" test.signed
|