forked from pool/s390-tools
2fb5028b0b
- Added the following patches (bsc#1068538) * s390-tools-sles15-cpi-add-unit-install-section.patch * s390-tools-sles15-zipl-remove-invalid-dasdview-command-line-option.patch * s390-tools-sles15-ziomon-re-add-missing-line.patch - Modified s390-tools-sles15-zdev-Use-correct-path-to-vmcp-binary.patch to point to the correct line in the common.mk file. OBS-URL: https://build.opensuse.org/request/show/546824 OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=38
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
Subject: [PATCH] [BZ 161183] zipl: remove invalid dasdview command line option
|
|
From: Stefan Haberland <sth@linux.vnet.ibm.com>
|
|
|
|
Description: zipl: remove invalid dasdview command line option
|
|
Symptom: zipl does not work when used with a lvm or device mapper
|
|
target.
|
|
Problem: The zipl_helper.device-mapper script uses dasdview with
|
|
an option "-f" that has been removed recently.
|
|
Solution: Remove "-f" from the dasdview call.
|
|
Reproduction: Run zipl on a lvm target.
|
|
Upstream-ID: -
|
|
Problem-ID: 161183
|
|
|
|
Signed-off-by: Stefan Haberland <sth@linux.vnet.ibm.com>
|
|
---
|
|
zipl/src/zipl_helper.device-mapper | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/zipl/src/zipl_helper.device-mapper
|
|
+++ b/zipl/src/zipl_helper.device-mapper
|
|
@@ -623,7 +623,7 @@ sub get_dasd_info($)
|
|
my $type;
|
|
local *HANDLE;
|
|
|
|
- open(HANDLE, "$dasdview -x -f $dev 2>/dev/null|") or
|
|
+ open(HANDLE, "$dasdview -x $dev 2>/dev/null|") or
|
|
# dasdview returned with an error
|
|
return undef;
|
|
while (<HANDLE>) {
|