141 lines
4.1 KiB
Plaintext
141 lines
4.1 KiB
Plaintext
## Path: System/Kernel/Kdump
|
|
## Description: Crash Dump Configuration
|
|
|
|
## Type: string
|
|
## Default: "kdump"
|
|
## ServiceRestart: kdump
|
|
#
|
|
# Kernel Version string for the -kdump kernel, such as 2.6.16-5-kdump
|
|
# If no version is specified, then the init script will try to find a
|
|
# kdump kernel with the same version number as the running kernel.
|
|
# The init script will use a kernel named:
|
|
# /boot/vmlinux-$KDUMP_KERNELVER
|
|
# Using "kdump" will default to the most recently installed kdump kernel.
|
|
#
|
|
KDUMP_KERNELVER="kdump"
|
|
|
|
## Type: string
|
|
## Default: ""
|
|
## ServiceRestart: kdump
|
|
#
|
|
# The kdump commandline is the command line that needs to be passed off to
|
|
# the kdump kernel. This will likely match the contents of the grub kernel
|
|
# line. For example:
|
|
# KDUMP_COMMANDLINE="ro root=LABEL=/"
|
|
# If a command line is not specified, the default will be taken from
|
|
# /proc/cmdline
|
|
#
|
|
KDUMP_COMMANDLINE=""
|
|
|
|
## Type: string
|
|
## Default: ""
|
|
## ServiceRestart: kdump
|
|
#
|
|
# Set this variable if you only want to _append_ values to the default
|
|
# command line string. The string gets also appended if KDUMP_COMMANDLINE
|
|
# is set.
|
|
#
|
|
KDUMP_COMMANDLINE_APPEND=""
|
|
|
|
## Type: string
|
|
## Default: ""
|
|
## ServiceRestart: kdump
|
|
#
|
|
# Additional arguments passed to kexec. For example, to generate
|
|
# ELF32 dump on x86-64 to allow i386 systems to read dump, set
|
|
# "--elf32-core-headers" here.
|
|
#
|
|
# Keep this empty in most cases.
|
|
#
|
|
KEXEC_OPTIONS=""
|
|
|
|
## Type: list(1,2,3,5,s)
|
|
## Default: 1
|
|
## ServiceRestart: kdump
|
|
#
|
|
# The run-level to boot the kdump kernel. The default is "1".
|
|
# If you need networks in the kdump environment, set "3".
|
|
#
|
|
KDUMP_RUNLEVEL="1"
|
|
|
|
## Type: yesno
|
|
## Default: yes
|
|
#
|
|
# Immediately reboot after saving the core in the kdump kernel?
|
|
# This option is ignored when KDUMP_DUMPDEV is set to a non-empty
|
|
# value. Use "yes" or "no". Default is "yes".
|
|
#
|
|
KDUMP_IMMEDIATE_REBOOT="yes"
|
|
|
|
## Type: string
|
|
## Default: ""
|
|
#
|
|
# A script or command executed to process and transfer the dump image.
|
|
# It can read the dump image either via /proc/vmcore or /dev/oldmem.
|
|
#
|
|
# Keeping this empty will use the default dumper, which copies the vmcore
|
|
# file to $KDUMP_SAVEDIR with some system checks.
|
|
#
|
|
KDUMP_TRANSFER=""
|
|
|
|
## Type: string
|
|
## Default: "/var/log/dump"
|
|
#
|
|
# Which directory should the dumps be saved in by the default dumper?
|
|
#
|
|
KDUMP_SAVEDIR="/var/log/dump"
|
|
|
|
## Type: integer
|
|
## Default: 5
|
|
#
|
|
# Specifies how many old dumps are kept. If the number of dump files
|
|
# exceeds this number, older dumps are removed.
|
|
#
|
|
# You can prevent the automatic removal by setting zero to this.
|
|
# The default value is 5.
|
|
#
|
|
KDUMP_KEEP_OLD_DUMPS=5
|
|
|
|
## Type: integer
|
|
## Default: 64
|
|
#
|
|
# Specifies the minimal free disk space (in MB unit) on the dump
|
|
# partition. If the free disk space is less than the sum of this
|
|
# value and memory size, the default dumper won't save vmcore file
|
|
# in order to keep the system sane.
|
|
#
|
|
# Setting zero forces to dump without check.
|
|
# The default value is 64MB.
|
|
#
|
|
KDUMP_FREE_DISK_SIZE=64
|
|
|
|
## Type: string
|
|
## Default: ""
|
|
#
|
|
# Specifies the dump device that is used for saving the dump in the kdump
|
|
# kernel. You don't need to specify a dump device here. Then the dump is
|
|
# written to KDUMP_SAVEDIR when booting from the kdump kernel.
|
|
#
|
|
# If KDUMP_DUMPDEV points to a device file, the dump is written to that device
|
|
# when booting from the kdump kernel. The advantage over is that you don't have
|
|
# to mount the root file system (which may be corrupted!) just to write the
|
|
# dump. On the first normal boot which is able to successfully mount the root
|
|
# file system, the dump is saved to KDUMP_SAVEDIR as usual.
|
|
#
|
|
# Important: The KDUMP_DUMPDEV is overwritten by kdump, so don't use it for
|
|
# saving any data. Also don't use the currently used swap partition.
|
|
#
|
|
KDUMP_DUMPDEV=""
|
|
|
|
## Type: integer
|
|
## Default: 3
|
|
#
|
|
# Determines if kdump uses verbose output. This value is a bitmask:
|
|
#
|
|
# 1: kdump command line is written to system log when executing
|
|
# /etc/init.d/kdump
|
|
# 2: progress is written to stdout while dumping
|
|
# 4: kdump command line is written so standard output when executing
|
|
# /etc/init.d/kdump
|
|
KDUMP_VERBOSE=3
|