192 |
- |
1 |
# Kernel Version string for the -kdump kernel, such as 2.6.13-1544.FC5kdump
|
|
|
2 |
# If no version is specified, then the init script will try to find a
|
|
|
3 |
# kdump kernel with the same version number as the running kernel.
|
|
|
4 |
KDUMP_KERNELVER=""
|
|
|
5 |
|
|
|
6 |
# The kdump commandline is the command line that needs to be passed off to
|
|
|
7 |
# the kdump kernel. This will likely match the contents of the grub kernel
|
|
|
8 |
# line. For example:
|
|
|
9 |
# KDUMP_COMMANDLINE="ro root=LABEL=/"
|
|
|
10 |
# Dracut depends on proper root= options, so please make sure that appropriate
|
|
|
11 |
# root= options are copied from /proc/cmdline. In general it is best to append
|
|
|
12 |
# command line options using "KDUMP_COMMANDLINE_APPEND=".
|
|
|
13 |
# If a command line is not specified, the default will be taken from
|
|
|
14 |
# /proc/cmdline
|
|
|
15 |
KDUMP_COMMANDLINE=""
|
|
|
16 |
|
|
|
17 |
# This variable lets us remove arguments from the current kdump commandline
|
|
|
18 |
# as taken from either KDUMP_COMMANDLINE above, or from /proc/cmdline
|
|
|
19 |
# NOTE: some arguments such as crashkernel will always be removed
|
|
|
20 |
KDUMP_COMMANDLINE_REMOVE="hugepages hugepagesz slub_debug quiet log_buf_len swiotlb"
|
|
|
21 |
|
|
|
22 |
# This variable lets us append arguments to the current kdump commandline
|
|
|
23 |
# after processed by KDUMP_COMMANDLINE_REMOVE
|
|
|
24 |
KDUMP_COMMANDLINE_APPEND="irqpoll nr_cpus=1 reset_devices cgroup_disable=memory mce=off numa=off udev.children-max=2 panic=10 rootflags=nofail acpi_no_memhotplug transparent_hugepage=never nokaslr novmcoredd hest_disable"
|
|
|
25 |
|
|
|
26 |
# Any additional kexec arguments required. In most situations, this should
|
|
|
27 |
# be left empty
|
|
|
28 |
#
|
|
|
29 |
# Example:
|
|
|
30 |
# KEXEC_ARGS="--elf32-core-headers"
|
|
|
31 |
KEXEC_ARGS="-s"
|
|
|
32 |
|
|
|
33 |
#Where to find the boot image
|
|
|
34 |
#KDUMP_BOOTDIR="/boot"
|
|
|
35 |
|
|
|
36 |
#What is the image type used for kdump
|
|
|
37 |
KDUMP_IMG="vmlinuz"
|
|
|
38 |
|
|
|
39 |
#What is the images extension. Relocatable kernels don't have one
|
|
|
40 |
KDUMP_IMG_EXT=""
|