Last active
October 2, 2024 01:48
-
-
Save Strykar/5d57145962bb1bcc00ef52f380697e55 to your computer and use it in GitHub Desktop.
Extract TPM digests, remove quotes and create an EFI signature list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://wiki.archlinux.org/title/Unified_Extensible_Firmware_Interface/Secure_Boot#Enrolling_Option_ROM_digests | |
digests=$(grep -o 'Digest: "[a-f0-9]\{64\}"' | sed 's/Digest: "//;s/"$//') | |
counter=1 | |
: > OpROM.esl | |
for digest in ${digests}; do | |
output_file="OpROM${counter}.esl" | |
digest-to-efi-sig-list "${digest}" "$output_file" | |
cat "${output_file}" >> OpROM.esl | |
counter=$((counter + 1)) | |
done | |
printf "Combined EFI signature list created in OpROM.esl" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment