summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutility/vbutil_what_keys2
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/vbutil_what_keys b/utility/vbutil_what_keys
index dc595c7e..abc33d03 100755
--- a/utility/vbutil_what_keys
+++ b/utility/vbutil_what_keys
@@ -85,7 +85,7 @@ dofile() {
file="$1"
size=$(stat -c %s "$file")
- if [ "$size" -eq 4194304 ] || [ "$size" -eq 8388608 ]; then
+ if [ "$size" -le 8388608 ]; then
echo "BIOS: $file"
hwid=$(gbb_utility --hwid "$file" | sed -e 's/^.*: *//') || continue;