diff -Nru makedumpfile-1.5.5/debian/changelog makedumpfile-1.5.5/debian/changelog --- makedumpfile-1.5.5/debian/changelog 2014-02-10 10:02:51.000000000 -0600 +++ makedumpfile-1.5.5/debian/changelog 2014-10-02 09:21:10.000000000 -0500 @@ -1,3 +1,9 @@ +makedumpfile (1.5.5-2ubuntu1.1) trusty; urgency=medium + + * kdump-config: load kdump kernel from vmlinux too. (LP: #1324544) + + -- Mauricio Faria de Oliveira Thu, 02 Oct 2014 09:21:10 -0500 + makedumpfile (1.5.5-2ubuntu1) trusty; urgency=low * Merge from Debian unstable (LP: #1277065). Remaining changes: diff -Nru makedumpfile-1.5.5/debian/kdump-config makedumpfile-1.5.5/debian/kdump-config --- makedumpfile-1.5.5/debian/kdump-config 2014-01-16 02:26:33.000000000 -0600 +++ makedumpfile-1.5.5/debian/kdump-config 2014-10-02 09:20:24.000000000 -0500 @@ -183,7 +183,13 @@ # 2: The currently running kernel may be relocatable. If so, then # use the currently running kernel as the crash kernel. if check_relocatable /boot/config-$KVER; then - KDUMP_KERNEL=/boot/vmlinuz-$KVER + if [ -f /boot/vmlinuz-$KVER ]; then + KDUMP_KERNEL=/boot/vmlinuz-$KVER + elif [ -f /boot/vmlinux-$KVER ]; then + KDUMP_KERNEL=/boot/vmlinux-$KVER + else + KDUMP_KERNEL= + fi if [ -f /boot/initrd.img-$KVER ]; then KDUMP_INITRD=/boot/initrd.img-$KVER else