Skip to content

Instantly share code, notes, and snippets.

@PIPIPIG233666
Created September 11, 2022 13:26
Show Gist options
  • Save PIPIPIG233666/524e4414c04d0ec047ae3f1f6a77b121 to your computer and use it in GitHub Desktop.
Save PIPIPIG233666/524e4414c04d0ec047ae3f1f6a77b121 to your computer and use it in GitHub Desktop.
Sign all .efi files
for f in $(sudo find -name '*.efi');do sudo sbctl sign -s $f;done;
@PIPIPIG233666
Copy link
Author

acidanthera/bugtracker#1755 (comment)
if u run into issues w opencore is borked

@PIPIPIG233666
Copy link
Author

PIPIPIG233666 commented Jun 15, 2023

for f in $(doas find /boot/efi -name '*.efi*');do doas sbctl sign -s $f;done;
for f in $(doas find /boot/efi -name '*.dll*');do doas sbctl sign -s $f;done;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment