mirror of
https://github.com/speed47/spectre-meltdown-checker
synced 2024-11-07 06:33:38 +01:00
check_vmlinux: when readelf doesn't work, try harder with another way
This commit is contained in:
parent
3be5e90481
commit
7fa2d6347b
@ -438,8 +438,18 @@ vmlinux=''
|
|||||||
vmlinux_err=''
|
vmlinux_err=''
|
||||||
check_vmlinux()
|
check_vmlinux()
|
||||||
{
|
{
|
||||||
readelf -h "$1" > /dev/null 2>&1 || return 1
|
readelf -h "$1" > /dev/null 2>&1 && return 0
|
||||||
return 0
|
# normally we would just use readelf to test for the binary, and it would be sufficient.
|
||||||
|
# but for some archs/distros it doesn't work well (issue #82), so we add a dumber check:
|
||||||
|
# uncompressed kernels always have the following string present
|
||||||
|
if ! which strings >/dev/null 2>&1; then
|
||||||
|
vmlinux_err="missing 'strings' tool, please install it, usually it's in the 'binutils' package"
|
||||||
|
return 0
|
||||||
|
else
|
||||||
|
strings "$1" | grep -q '^Linux version ' && return 0
|
||||||
|
fi
|
||||||
|
# not found: kernel not valid
|
||||||
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
try_decompress()
|
try_decompress()
|
||||||
|
Loading…
Reference in New Issue
Block a user