Created
April 14, 2019 08:17
-
-
Save sticklerm3/0ae03ba70b02e86f1097cdf6fc3f39f0 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env bash | |
| # This script was sourced from http://krypted.com/uncategorized/check-the-efi-version-of-a-mac/ | |
| current_efi_version=$(/usr/libexec/efiupdater | grep "Raw" | cut -d ':' -f2 | sed 's/ //') | |
| echo "current_efi_version $current_efi_version" | |
| latest_efi_version=$(ls -La /usr/libexec/firmwarecheckers/eficheck/EFIAllowListShipping.bundle/allowlists/ | grep "$current_efi_version") | |
| echo "latest_efi_version $latest_efi_version" | |
| if [ "$latest_efi_version" == "" ]; then | |
| echo "EFI FAILED" | |
| exit 1 | |
| else | |
| echo "EFI PASSED" | |
| exit 0 | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment