From e372562dfe57dde54ce942396f9dd5de3d5c160a Mon Sep 17 00:00:00 2001 From: Dan Horak Date: Sun, 20 Jul 2008 09:24:05 +0200 Subject: [PATCH 1/5] s390-tools-1.5.3-zipl-zfcpdump-2 --- common.mak | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mak b/common.mak index a3c03f7..efb3314 100644 --- a/common.mak +++ b/common.mak @@ -62,8 +62,8 @@ GROUP = $(shell id -gn) export INSTROOT BINDIR LIBDIR MANDIR OWNER GROUP # Special defines for zfcpdump -ZFCPDUMP_DIR = /usr/local/share/zfcpdump -ZFCPDUMP_IMAGE = zfcpdump.image +ZFCPDUMP_DIR = /boot +ZFCPDUMP_IMAGE = zfcpdump ZFCPDUMP_RD = zfcpdump.rd export ZFCPDUMP_DIR ZFCPDUMP_IMAGE ZFCPDUMP_RD -- 1.7.7.6 From 1c3a3c032cee5162ebf6f0504aab5232eddae91a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 23 Apr 2009 11:46:01 +0200 Subject: [PATCH 2/5] s390-tools-1.8.1-fdasd-su --- fdasd/fdasd.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/fdasd/fdasd.c b/fdasd/fdasd.c index fb1f5ce..7dcef66 100644 --- a/fdasd/fdasd.c +++ b/fdasd/fdasd.c @@ -2092,10 +2092,12 @@ fdasd_get_geometry (fdasd_anchor_t *anc) if (anc->verbose) printf("disk type check : ok\n"); if (dasd_info.FBA_layout != 0) { - snprintf(err_str, ERROR_STRING_SIZE, - "%s is not formatted with z/OS compatible " - "disk layout!", options.device); - fdasd_error(anc, wrong_disk_format, err_str); + if(!anc->silent) { + snprintf(err_str, ERROR_STRING_SIZE, + "%s is not formatted with z/OS compatible " + "disk layout!", options.device); + fdasd_error(anc, wrong_disk_format, err_str); + } } if (anc->verbose) printf("disk layout check : ok\n"); -- 1.7.7.6 From d6ab931e675f5bd5d56a30e23bef99380c4a0caf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 19 Jun 2009 10:01:30 +0200 Subject: [PATCH 3/5] s390-tools-1.8.1-zipl-kdump-man Description: Add kdump kernel installation instruction to zipl man page. Symptom: User wants to prepare SCSI disk for dump, but has not installed the kdump kernel rpm. Problem: The installation of the kdump kernel rpm is prereq for preparing a SCSI dump disk for dump. Solution: Document that in the zipl man page. --- zipl/man/zipl.8 | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/zipl/man/zipl.8 b/zipl/man/zipl.8 index 5d6b891..5673e85 100644 --- a/zipl/man/zipl.8 +++ b/zipl/man/zipl.8 @@ -263,6 +263,8 @@ will be incomplete. It is not possible to specify both this parameter and the name of a menu or configuration section on the command line at the same time. +.B Note that before using this option the "kernel-kdump" rpm has to be +.B installed. .TP .BR "\-M " " or " "--mvdump=" Install a multi-volume dump record on each device associated with one of the -- 1.7.7.6 From 615c54de6d105378ff64464b225a7110774ed1ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 18 Mar 2011 16:35:17 +0100 Subject: [PATCH 4/5] switch to using udevadm settle --- etc/init.d/mon_statd | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/etc/init.d/mon_statd b/etc/init.d/mon_statd index 60bcf00..b6699c7 100755 --- a/etc/init.d/mon_statd +++ b/etc/init.d/mon_statd @@ -39,7 +39,7 @@ load_kernel_module() if [ $? -ne 0 ]; then exit 1 fi - udevsettle + udevadm settle if [ $? -ne 0 ]; then exit 1 fi -- 1.7.7.6 From 97b0b44f7ec5b13ecd63f40db96b7a9bc41ec890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Fri, 11 May 2012 14:56:34 +0200 Subject: [PATCH 5/5] vol_id doesn't exist for some years The vol_id utility doesn't exist for some years in udev and seems the rule isn't required for proper function of the system. (rhbz#819530) --- etc/udev/rules.d/59-dasd.rules | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/etc/udev/rules.d/59-dasd.rules b/etc/udev/rules.d/59-dasd.rules index 5e94389..7bbcd22 100644 --- a/etc/udev/rules.d/59-dasd.rules +++ b/etc/udev/rules.d/59-dasd.rules @@ -28,7 +28,6 @@ LABEL="dasd_partition_end" ENV{ID_SERIAL}!="?*", GOTO="dasd_symlinks_end" # by-label/by-uuid (filesystem properties) -IMPORT{program}="vol_id --export $tempnode" ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID}" ENV{ID_FS_USAGE}=="filesystem|other", ENV{ID_FS_LABEL_SAFE}=="?*", SYMLINK+="disk/by-label/$env{ID_FS_LABEL_SAFE}" -- 1.7.7.6