Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP3:Update
kdump
kdump-kdumprd-Look-for-boot-image-and-boot-Imag...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File kdump-kdumprd-Look-for-boot-image-and-boot-Image.patch of Package kdump
From d332bb87cd1d093f8b78ff3d79413d84fa26dea3 Mon Sep 17 00:00:00 2001 From: Petr Tesarik <ptesarik@suse.com> Date: Fri, 26 Apr 2019 09:27:40 +0200 Subject: kdumprd: Look for /boot/image-* and /boot/Image-* References: bsc#1132799 Upstream: merged Git-commit: d332bb87cd1d093f8b78ff3d79413d84fa26dea3 These kernel image names are used on s390(x) and arm*/aarch64, respectively. Without this change, the path to the kernel must be given explicitly on the command line if a specific kernel version is required. Signed-off-by: Petr Tesarik <ptesarik@suse.com> --- init/mkdumprd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/init/mkdumprd +++ b/init/mkdumprd @@ -125,9 +125,9 @@ shift $(($OPTIND -1)) if [ -z "$KERNEL" ] ; then if [ -n "$KERNELVERSION" ] ; then KERNEL=/boot/vmlinuz-$KERNELVERSION - if ! [ -f "$KERNEL" ] ; then - KERNEL=/boot/vmlinux-$KERNELVERSION - fi + test -f "$KERNEL" || KERNEL=/boot/image-$KERNELVERSION + test -f "$KERNEL" || KERNEL=/boot/Image-$KERNELVERSION + test -f "$KERNEL" || KERNEL=/boot/vmlinux-$KERNELVERSION else output=$(kdumptool find_kernel $find_kernel_args) KERNEL=$(echo "$output" | grep ^Kernel | cut -f 2)
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor