3 |
- |
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 |
# If a command line is not specified, the default will be taken from
|
|
|
11 |
# /proc/cmdline
|
|
|
12 |
KDUMP_COMMANDLINE=""
|
|
|
13 |
|
|
|
14 |
# This variable lets us append arguments to the current kdump commandline
|
|
|
15 |
# As taken from either KDUMP_COMMANDLINE above, or from /proc/cmdline
|
|
|
16 |
KDUMP_COMMANDLINE_APPEND="irqpoll nr_cpus=1 reset_devices cgroup_disable=memory mce=off"
|
|
|
17 |
|
|
|
18 |
# Any additional /sbin/mkdumprd arguments required.
|
|
|
19 |
MKDUMPRD_ARGS=""
|
|
|
20 |
|
|
|
21 |
# Any additional kexec arguments required. In most situations, this should
|
|
|
22 |
# be left empty
|
|
|
23 |
#
|
|
|
24 |
# Example:
|
|
|
25 |
# KEXEC_ARGS="--elf32-core-headers"
|
|
|
26 |
KEXEC_ARGS=""
|
|
|
27 |
|
|
|
28 |
#Where to find the boot image
|
|
|
29 |
KDUMP_BOOTDIR="/boot"
|
|
|
30 |
|
|
|
31 |
#What is the image type used for kdump
|
|
|
32 |
KDUMP_IMG="vmlinuz"
|
|
|
33 |
|
|
|
34 |
#What is the images extension. Relocatable kernels don't have one
|
|
|
35 |
KDUMP_IMG_EXT=""
|