add arch linux bootimage path

This commit is contained in:
Frederik Schreiber 2018-01-08 10:36:29 +01:00
parent c1004d5171
commit 40a9d43c44
1 changed files with 1 additions and 1 deletions

View File

@ -89,8 +89,8 @@ extract_vmlinux()
status=0
img=''
# try to find the image of the current running kernel
[ -e /boot/vmlinuz-linux ] && img=/boot/vmlinuz-linux
[ -e /boot/vmlinuz-$(uname -r) ] && img=/boot/vmlinuz-$(uname -r)
[ -e /boot/vmlinux-$(uname -r) ] && img=/boot/vmlinux-$(uname -r)
[ -e /boot/kernel-$( uname -r) ] && img=/boot/kernel-$( uname -r)
[ -e /boot/bzImage-$(uname -r) ] && img=/boot/bzImage-$(uname -r)
if [ -z "$img" ]; then