6a6c0cb679
*** v2.34.0 * Changes of existing tools: - ap_tools/ap-check: Add support for vfio-ap dynamic configuration - dbginfo.sh: Update/Add additional DASD data collection - dumpconf: Add new parameter 'SCP_DATA' for SCSI/NVMe/ECKD dump devices - libutil: Make formatted meta-data configurable - s390-tools: Replace 'which' with built-in 'command -v' - zdump/dfi_elf: Support core dumps of vr-kernels * Bug Fixes: - chzdev: Fix warning about failed ATTR writes by udev - rust/pv: Try again if first CRL-URI is invalid - rust/pvattest: Add short option for --arpk - zdump: Fix 'zgetdump -i' ioctl error on s390 formatted dump file *** v2.33.1 * Bug Fixes: - s390-tools: Fix formatting and typos in README.md - s390-tools: Fix release string *** v2.33.0 * Add new tools / libraries: - chpstat: New tool for displaying channel path statistics - libutil: Add output format helpers(util_fmt: JSON, JSON-SEQ, CSV, text pairs) * Changes of existing tools / libraries: - chzdev: Add --is-owner to identify files created by zdev - dasdfmt: Change default mode to always use full-format (Note: affects ESE DASD) - libap: Significantly reduce delay time between file lock retries - pvattest: Rewrite from C to Rust - pvattest: Support additional data & user-data - rust/pv: Support for Attestation * Bug Fixes: - chreipl: Improve disk type detection when running under QEMU - dbginfo.sh: Use POSIX option with uname - s390-tools: Fix missing hyphen escapes in the man page for many tools - zipl/src: Fix bugs in disk_get_info() reproducible in corner cases *** v2.32.0 * Changes of existing tools: - cpumf/lscpumf: add support for machine type 3932 - genprotimg, pvattest, and pvsecret accept IBM signing key with Armonk as subject locality - zdump/zipl: Support for List-Directed dump from ECKD DASD - zkey: Detect FIPS mode and generate PBKDF for luksFormat according to it * Bug Fixes: - dbginfo.sh: dash compatible copy sequence - rust/pv_core: Fix UvDeviceInfo::get() method - zipl/src: Fix leak of files if run with a broken configuration - zkey: Fix convert command to accept only keys of type CCA-AESDATA * Revendored vendor.tar.gz * Removed obsolete patches - s390-tools-sles15sp5-01-rust-pv-support-Armonk-in-IBM-signing-key-subject.patch - s390-tools-sles15sp6-02-genprotimg-support-Armonk-in-IBM-signing-key-subject.patch - s390-tools-sles15sp6-03-libpv-support-Armonk-in-IBM-signing-key-subject.patch - s390-tools-sles15sp6-04-pvattest-Fix-root-ca-parsing.patch - s390-tools-sles15sp6-genprotimg-makefile.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=219
149 lines
3.8 KiB
Diff
149 lines
3.8 KiB
Diff
---
|
|
etc/sysconfig/dumpconf | 133 +++++++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 133 insertions(+)
|
|
|
|
--- a/etc/sysconfig/dumpconf
|
|
+++ b/etc/sysconfig/dumpconf
|
|
@@ -1,3 +1,4 @@
|
|
+###########################################################################################
|
|
#
|
|
# s390 dump config
|
|
#
|
|
@@ -78,3 +79,135 @@
|
|
# dumpconf becomes active immediately during system startup.
|
|
#
|
|
# ON_PANIC=reipl
|
|
+
|
|
+############################ Begin Definitions ###########################################
|
|
+## Path: System/Dumpconf
|
|
+## Description: Configures the actions which should be performed after a kernel panic
|
|
+## Type: list(stop,dump,vmcmd,reipl,dump_reipl)
|
|
+## Default: "stop"
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the action that should be taken if a kernel panic happens.
|
|
+#
|
|
+ON_PANIC="stop"
|
|
+
|
|
+## Type: integer(0:300)
|
|
+## Default: 5
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Using reipl or dump_reipl actions with ON_PANIC can lead to the system
|
|
+# looping with alternating IPLs and crashes. Use DELAY_MINUTES to prevent
|
|
+# such a loop. DELAY_MINUTES delays activating the specified panic action
|
|
+# for a newly started system. When the specified time has elapsed, dumpconf
|
|
+# activates the specified panic action. This action is taken should the
|
|
+# system subsequently crash. If the system crashes before the time has
|
|
+# elapsed the previously defined action is taken. If no previous action has
|
|
+# been defined the default action (STOP) is performed.
|
|
+#
|
|
+DELAY_MINUTES="5"
|
|
+
|
|
+## Type: list(ccw,fcp,nvme)
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the type, ccw for DASD, fcp for zFCP, or nvme for NVMe Disk.
|
|
+#
|
|
+DUMP_TYPE=""
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the device id for a DASD or SCSI over zFCP dump device.
|
|
+#
|
|
+# For example (DASD and SCSI over zFCP have the same structure): DEVICE=0.0.4711
|
|
+#
|
|
+DEVICE=""
|
|
+
|
|
+# Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the WWPN for a zFCP dump device.
|
|
+#
|
|
+# For example: WWPN=0x5005076303004711
|
|
+#
|
|
+WWPN=""
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the LUN for a zFCP dump device.
|
|
+#
|
|
+# For example: LUN=0x4711000000000000
|
|
+#
|
|
+LUN=""
|
|
+
|
|
+## Type: integer(0:30)
|
|
+## Default: "0"
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the Boot program selector for a zFCP dump device.
|
|
+#
|
|
+# A decimal value between 0 and 30 specifying the program to be loaded from
|
|
+# the FCP-I/O device.
|
|
+#
|
|
+BOOTPROG="0"
|
|
+
|
|
+## Type: string
|
|
+## Default: "0"
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the Boot record logical block address for a zFCP dump device.
|
|
+#
|
|
+# The hexadecimal digits designating the logical-block address of the boot record of the FCP-I/O device.
|
|
+# It must be a value from 0-FFFFFFFF FFFFFFFF. For values longer than 8 hex characters at least one separator
|
|
+# blank is required after the 8th character.
|
|
+#
|
|
+BR_LBA="0"
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the Function ID for NVMe dump device.
|
|
+#
|
|
+# The hexadecimal digits designating the Function ID for the NMVe disk.
|
|
+#
|
|
+# For example: FID=0x00000300
|
|
+#
|
|
+FID=""
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# Define the Namespace ID for the NVMe dump device
|
|
+#
|
|
+# The hexadecimal digits designating the Namespace ID for the NMVe disk.
|
|
+#
|
|
+# For example: NSID=0x00000001
|
|
+#
|
|
+NSID=""
|
|
+
|
|
+## Type: string
|
|
+## Default: ""
|
|
+## ServiceRestart: dumpconf
|
|
+#
|
|
+# VMCMD_<X>
|
|
+# Specifies a CP command, <X> is a number from one to eight. You can
|
|
+# specify up to eight CP commands that are executed in case of a kernel
|
|
+# panic. Note that VM commands, device adresses, and VM guest names
|
|
+# must be uppercase.
|
|
+#
|
|
+VMCMD_1=""
|
|
+VMCMD_2=""
|
|
+VMCMD_3=""
|
|
+VMCMD_4=""
|
|
+VMCMD_5=""
|
|
+VMCMD_6=""
|
|
+VMCMD_7=""
|
|
+VMCMD_8=""
|
|
+
|
|
+############################### End Definitions ##############################################
|
|
\ No newline at end of file
|