ab224c
# Kernel Version string for the -kdump kernel, such as 2.6.13-1544.FC5kdump
ab224c
# If no version is specified, then the init script will try to find a
ab224c
# kdump kernel with the same version number as the running kernel.
ab224c
KDUMP_KERNELVER=""
ab224c
ab224c
# The kdump commandline is the command line that needs to be passed off to
ab224c
# the kdump kernel.  This will likely match the contents of the grub kernel
ab224c
# line.  For example:
ab224c
#   KDUMP_COMMANDLINE="ro root=LABEL=/"
ab224c
# Dracut depends on proper root= options, so please make sure that appropriate
ab224c
# root= options are copied from /proc/cmdline. In general it is best to append
ab224c
# command line options using "KDUMP_COMMANDLINE_APPEND=".
ab224c
# If a command line is not specified, the default will be taken from
ab224c
# /proc/cmdline
ab224c
KDUMP_COMMANDLINE=""
ab224c
766e0d
# This variable lets us remove arguments from the current kdump commandline
766e0d
# as taken from either KDUMP_COMMANDLINE above, or from /proc/cmdline
766e0d
# NOTE: some arguments such as crashkernel will always be removed
766e0d
KDUMP_COMMANDLINE_REMOVE="hugepages hugepagesz slub_debug"
766e0d
ab224c
# This variable lets us append arguments to the current kdump commandline
766e0d
# after processed by KDUMP_COMMANDLINE_REMOVE
c97d8c
KDUMP_COMMANDLINE_APPEND="nr_cpus=1 cgroup_disable=memory numa=off udev.children-max=2 panic=10 transparent_hugepage=never novmcoredd"
ab224c
ab224c
# Any additional /sbin/mkdumprd arguments required.
ab224c
MKDUMPRD_ARGS=""
ab224c
ab224c
# Any additional kexec arguments required.  In most situations, this should
ab224c
# be left empty
ab224c
#
ab224c
# Example:
ab224c
#   KEXEC_ARGS="--elf32-core-headers"
ab224c
KEXEC_ARGS=""
ab224c
ab224c
#Where to find the boot image
1b417c
#KDUMP_BOOTDIR="/boot"
ab224c
ab224c
#What is the image type used for kdump
ab224c
KDUMP_IMG="vmlinuz"
ab224c
ab224c
#What is the images extension.  Relocatable kernels don't have one
ab224c
KDUMP_IMG_EXT=""