enh: speedup by not decompressing kernel on --sysfs-only

This commit is contained in:
Stéphane Lesimple 2018-02-02 11:13:31 +01:00
parent 1834dd6201
commit 36bd80d75f
1 changed files with 2 additions and 0 deletions

View File

@ -982,6 +982,8 @@ if [ -e "$opt_kernel" ]; then
if ! which readelf >/dev/null 2>&1; then
_debug "readelf not found"
vmlinux_err="missing 'readelf' tool, please install it, usually it's in the 'binutils' package"
elif [ "$opt_sysfs_only" = 1 ]; then
vmlinux_err='kernel image decompression skipped'
else
extract_vmlinux "$opt_kernel"
fi