kdumpctl: adjust the boot dir if kernel is put in sub dir of /boot
Previously /boot is asumed as the default dir where kernel and initrd is put. However, the directory containing the running kernel image on Atomic systems differs in each installation. Usually something like: /boot/ostree/rhel-atomic-host-b50a015b637c353dc6554c851f8a1212b60d6121a7316715e4a63e2a4113cd72 This means that kdump will not find vmlinuz when installed on an Atomic host, and thus the kdump service will fail to start. In this patch, the kdump boot dir finding behaviour is a little changed. Firstly check whether user has specify a directory explicitly in /etc/sysconfig/kdump. If yes that is respected. Otherwise we assume 1st kernel and kdump kernel are put in the same place under /boot. Then find it according /proc/cmdline and append it to /boot/ Note: So now the KDUMP_BOOTDIR in /etc/sysconfig/kdump is set as empty by default. If user set KDUMP_BOOTDIR to a directory, then he need to take care of all related things himself. otherwise kdump script handle it automatically. Signed-off-by: Baoquan He <bhe@redhat.com> Acked-by: Dave Young <dyoung@redhat.com> Acked-by: Minfei Huang <mhuang@redhat.com>
This commit is contained in:
parent
a9b30d9e79
commit
cad991814e
@ -26,7 +26,7 @@ KDUMP_COMMANDLINE_APPEND="irqpoll nr_cpus=1 reset_devices numa=off udev.children
|
||||
KEXEC_ARGS=""
|
||||
|
||||
#Where to find the boot image
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
#KDUMP_BOOTDIR="/boot"
|
||||
|
||||
#What is the image type used for kdump
|
||||
KDUMP_IMG="vmlinuz"
|
||||
|
@ -26,7 +26,7 @@ KDUMP_COMMANDLINE_APPEND="irqpoll maxcpus=1 noirqdistrib reset_devices cgroup_di
|
||||
KEXEC_ARGS=""
|
||||
|
||||
#Where to find the boot image
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
#KDUMP_BOOTDIR="/boot"
|
||||
|
||||
#What is the image type used for kdump
|
||||
KDUMP_IMG="vmlinuz"
|
||||
|
@ -26,7 +26,7 @@ KDUMP_COMMANDLINE_APPEND="irqpoll maxcpus=1 noirqdistrib reset_devices cgroup_di
|
||||
KEXEC_ARGS=""
|
||||
|
||||
#Where to find the boot image
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
#KDUMP_BOOTDIR="/boot"
|
||||
|
||||
#What is the image type used for kdump
|
||||
KDUMP_IMG="vmlinuz"
|
||||
|
@ -29,7 +29,7 @@ MKDUMPRD_ARGS=""
|
||||
KEXEC_ARGS=""
|
||||
|
||||
#Where to find the boot image
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
#KDUMP_BOOTDIR="/boot"
|
||||
|
||||
#What is the image type used for kdump
|
||||
KDUMP_IMG="vmlinuz"
|
||||
|
@ -26,7 +26,7 @@ KDUMP_COMMANDLINE_APPEND="irqpoll nr_cpus=1 reset_devices cgroup_disable=memory
|
||||
KEXEC_ARGS=""
|
||||
|
||||
#Where to find the boot image
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
#KDUMP_BOOTDIR="/boot"
|
||||
|
||||
#What is the image type used for kdump
|
||||
KDUMP_IMG="vmlinuz"
|
||||
|
19
kdumpctl
19
kdumpctl
@ -292,6 +292,23 @@ get_pcs_cluster_modified_files()
|
||||
echo $modified_files
|
||||
}
|
||||
|
||||
check_boot_dir()
|
||||
{
|
||||
local _is_atomic
|
||||
#If user specify a boot dir for kdump kernel, let's use it. Otherwise
|
||||
#check whether it's a atomic host. If yes parse the subdirectory under
|
||||
#/boot; If not just find it under /boot.
|
||||
[ -n "$KDUMP_BOOTDIR" ] && return
|
||||
|
||||
_is_atomic=$(cat /proc/cmdline | grep "ostree")
|
||||
if [ -z "$_is_atomic" ] || [ "$(uname -m)" = "s390x" ]; then
|
||||
KDUMP_BOOTDIR="/boot"
|
||||
else
|
||||
eval $(cat /proc/cmdline| grep "BOOT_IMAGE" | cut -d' ' -f1)
|
||||
KDUMP_BOOTDIR="/boot"$(dirname $BOOT_IMAGE)
|
||||
fi
|
||||
}
|
||||
|
||||
setup_target_initrd()
|
||||
{
|
||||
if [ $DEFAULT_DUMP_MODE == "fadump" ]; then
|
||||
@ -311,6 +328,8 @@ check_rebuild()
|
||||
local _force_rebuild force_rebuild="0"
|
||||
local initramfs_has_fadump
|
||||
|
||||
check_boot_dir
|
||||
|
||||
if [ -z "$KDUMP_KERNELVER" ]; then
|
||||
kdump_kver=`uname -r`
|
||||
else
|
||||
|
@ -404,6 +404,16 @@ Say foo.com:/export/tmp is mounted on /var. In this case dump target is
|
||||
nfs server and path will be adjusted to "/crash" and dump will be saved to
|
||||
foo.com:/export/tmp/crash/ directory.
|
||||
|
||||
Kdump boot directory
|
||||
====================
|
||||
Usually kdump kernel is the same as 1st kernel. So kdump will try to find
|
||||
kdump kernel under /boot according to /proc/cmdline. E.g we execute below
|
||||
command and get an output:
|
||||
cat /proc/cmdline
|
||||
BOOT_IMAGE=/xxx/vmlinuz-3.yyy.zzz root=xxxx .....
|
||||
Then kdump kernel will be /boot/xxx/vmlinuz-3.yyy.zzz.
|
||||
However a variable KDUMP_BOOTDIR in /etc/sysconfig/kdump is provided to
|
||||
user if kdump kernel is put in a different directory.
|
||||
|
||||
Kdump Post-Capture Executable
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user