Skip to content

Instantly share code, notes, and snippets.

@julp
Created August 13, 2025 13:25
Show Gist options
  • Select an option

  • Save julp/d3d09440bf9183a8eac6f55f4a96db76 to your computer and use it in GitHub Desktop.

Select an option

Save julp/d3d09440bf9183a8eac6f55f4a96db76 to your computer and use it in GitHub Desktop.
FreeBSD dump EFI content
#!/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