1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#
# s390 dump config
#
# Configures the actions which should be performed after a kernel panic
# and on PSW restart.
#
# The following actions are supported:
#
# * stop: Stop Linux (default)
# * dump: Dump Linux with stand-alone dump tool
# * vmcmd: Issue z/VM CP commands
# * reipl: Re-IPL Linux using setting under /sys/firmware/reipl
# * dump_reipl: First dump Linux with stand-alone dump tool, then re-IPL Linux
# using setting under /sys/firmware/reipl
#
# For the actions "reipl" and "dump_reipl" the DELAY_MINUTES keyword may
# be used to delay the activation of dumpconf.
# Thus potential reipl loops caused by kernel panics
# which persistently occur early in the boot process can be prevented.
# Dump on CCW device (DASD) and re-IPL after dump is complete.
# The re-IPL device, as specified under "/sys/firmware/reipl", is used.
# The activation of dumpconf is delayed by 5 minutes.
#
# ON_PANIC=dump_reipl
# DUMP_TYPE=ccw
# DEVICE=0.0.4e13
# DELAY_MINUTES=5
#
# Dump on ECKD device (DASD)
#
# ON_PANIC=dump
# DUMP_TYPE=eckd
# DEVICE=0.0.1004
# BOOTPROG=0
# BR_CHR=auto
#
# Dump on fcp device (SCSI Disk)
#
# ON_PANIC=dump
# DUMP_TYPE=fcp
# DEVICE=0.0.4711
# WWPN=0x5005076303004711
# LUN=0x4711000000000000
# BOOTPROG=0
# BR_LBA=0
#
# Dump on nvme device (NVMe Disk)
#
# ON_PANIC=dump
# DUMP_TYPE=nvme
# FID=0x00000300
# NSID=0x00000001
# BOOTPROG=3
# BR_LBA=0
#
# Use VMDUMP
#
# ON_PANIC=vmcmd
# VMCMD_1="MESSAGE * Starting VMDUMP"
# VMCMD_2="VMDUMP"
# VMCMD_3="IPL 4711"
#
# Stop Linux (default)
#
# ON_PANIC=stop
#
# Re-IPL Linux
# The re-IPL device, as specified under "/sys/firmware/reipl", is used.
# Since the DELAY_MINUTES keyword is omitted, there is no delay and
# dumpconf becomes active immediately during system startup.
#
# ON_PANIC=reipl
|