1
0
mirror of https://github.com/speed47/spectre-meltdown-checker synced 2024-08-29 15:23:40 +02:00

Use 'readelf' instead of 'file' to detect kernel

This commit is contained in:
Alkorin 2018-01-08 15:55:47 +01:00
parent 26564206db
commit 1a14483c98

View File

@ -35,7 +35,7 @@ pstatus()
check_vmlinux() check_vmlinux()
{ {
file "$1" 2>/dev/null | grep -q ELF || return 1 readelf -h $1 > /dev/null 2>&1 || return 1
return 0 return 0
} }