cf4a81
# Kernel Version string for the -kdump kernel, such as 2.6.13-1544.FC5kdump
cf4a81
# If no version is specified, then the init script will try to find a
cf4a81
# kdump kernel with the same version number as the running kernel.
cf4a81
KDUMP_KERNELVER=""
cf4a81
cf4a81
# The kdump commandline is the command line that needs to be passed off to
cf4a81
# the kdump kernel.  This will likely match the contents of the grub kernel
cf4a81
# line.  For example:
cf4a81
#   KDUMP_COMMANDLINE="ro root=LABEL=/"
cf4a81
# Dracut depends on proper root= options, so please make sure that appropriate
cf4a81
# root= options are copied from /proc/cmdline. In general it is best to append
cf4a81
# command line options using "KDUMP_COMMANDLINE_APPEND=".
cf4a81
# If a command line is not specified, the default will be taken from
cf4a81
# /proc/cmdline
cf4a81
KDUMP_COMMANDLINE=""
cf4a81
cf4a81
# This variable lets us remove arguments from the current kdump commandline
cf4a81
# as taken from either KDUMP_COMMANDLINE above, or from /proc/cmdline
cf4a81
# NOTE: some arguments such as crashkernel will always be removed
cf4a81
KDUMP_COMMANDLINE_REMOVE="hugepages hugepagesz slub_debug"
cf4a81
cf4a81
# This variable lets us append arguments to the current kdump commandline
cf4a81
# after processed by KDUMP_COMMANDLINE_REMOVE
cf4a81
KDUMP_COMMANDLINE_APPEND="irqpoll maxcpus=1 reset_devices novmcoredd"
cf4a81
cf4a81
# Any additional kexec arguments required.  In most situations, this should
cf4a81
# be left empty
cf4a81
#
cf4a81
# Example:
cf4a81
#   KEXEC_ARGS="--elf32-core-headers"
cf4a81
KEXEC_ARGS=""