forked from public/airgap
20 lines
363 B
Bash
Executable File
20 lines
363 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "${1}" in
|
|
start)
|
|
printf 'Loading firmware signing key from Coreboot CBFS: '
|
|
mkdir -p /.gnupg
|
|
cbfs -r heads/initrd/.gnupg/pubring.kbx > /.gnupg/pubring.kbx
|
|
cbfs -r heads/initrd/.gnupg/trustdb.gpg > /.gnupg/trustdb.gpg
|
|
if [ $? -eq 0 ]; then
|
|
echo "OK"
|
|
else
|
|
echo "FAIL"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Usage: ${0} {start}"
|
|
exit 1
|
|
;;
|
|
esac
|