Created
August 13, 2025 13:25
-
-
Save julp/d3d09440bf9183a8eac6f55f4a96db76 to your computer and use it in GitHub Desktop.
FreeBSD dump EFI content
This file contains hidden or 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/sh | |
| ( | |
| for guid in `efivar -l`; do | |
| echo "========== ${guid} ==========" | |
| efivar -p "${guid}" -b | hexdump -C | |
| echo "" | |
| done | |
| ) > /tmp/efi.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment