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
1 changed files with 1 additions and 1 deletions

View File

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