Subversion Repositories configs

Rev

Rev 192 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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=""
195 - 41
 
42
# Logging is controlled by following variables in the first kernel:
43
#   - @var KDUMP_STDLOGLVL - logging level to standard error (console output)
44
#   - @var KDUMP_SYSLOGLVL - logging level to syslog (by logger command)
45
#   - @var KDUMP_KMSGLOGLVL - logging level to /dev/kmsg (only for boot-time)
46
#
47
# In the second kernel, kdump will use the rd.kdumploglvl option to set the
48
# log level in the above KDUMP_COMMANDLINE_APPEND.
49
#   - @var rd.kdumploglvl - logging level to syslog (by logger command)
50
#   - for example: add the rd.kdumploglvl=3 option to KDUMP_COMMANDLINE_APPEND
51
#
52
# Logging levels: no logging(0), error(1),warn(2),info(3),debug(4)
53
#
54
# KDUMP_STDLOGLVL=3
55
# KDUMP_SYSLOGLVL=0
56
# KDUMP_KMSGLOGLVL=0