forked from pool/s390-tools
( jsc#IBM-1447, jsc#IBM-1062 ) * s390-tools-General-update-01.patch * s390-tools-General-update-02.patch * s390-tools-General-update-03.patch * s390-tools-General-update-04.patch * s390-tools-General-update-05.patch * s390-tools-General-update-06.patch * s390-tools-General-update-07.patch * s390-tools-General-update-08.patch * s390-tools-General-update-09.patch * s390-tools-General-update-10.patch * s390-tools-General-update-11.patch * s390-tools-General-update-12.patch * s390-tools-Additional-update-01.patch * s390-tools-Additional-update-02.patch ( jsc#IBM-1570, jsc#IBM-1571 ) * s390-tools-Support-unencrypted-SE-images-01.patch ( jsc#IBM-1572, jsc#IBM-1573 ) * s390-tools-pvimg-info-command-01.patch * s390-tools-pvimg-info-command-02.patch * s390-tools-pvimg-info-command-03.patch * s390-tools-pvimg-info-command-04.patch ( jsc#IBM-1576, jsc#IBM-1577 ) * s390-tools-pvimg-additional-01.patch - Renamed patches from - to * s390-tools-01-opticsmon-Fix-runaway-loop-in-on_link_change.patch to s390-tools-Additional-update-01.patch * s390-tools-02-libzpci-opticsmon-Refactor-on_link_change-using-new.patch to s390-tools-Additional-update-02.patch * s390-tools-03-rust-pvimg-Add-enable-disable-image-encryption-flags-to-pvimg-create.patch to s390-tools-Support-unencrypted-SE-images-01.patch - Revendored vendor.tar.gz OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=243
27 lines
995 B
Plaintext
27 lines
995 B
Plaintext
From f7a0f391f2c4e8acc96b21ab5de54a178aa60088 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Fri, 22 Nov 2013 15:39:38 +0100
|
|
Subject: [PATCH] 59-dasd.rules: generate by-id links on 'change' and 'add'
|
|
|
|
The by-id rules need to be triggered on both, 'change' and 'add',
|
|
to work correctly during restarting udev.
|
|
|
|
References: bnc#808042
|
|
|
|
Signed-off-by: Robert Milasan <rmilasan@suse.de>
|
|
---
|
|
etc/udev/rules.d/59-dasd.rules | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/etc/udev/rules.d/59-dasd.rules
|
|
+++ b/etc/udev/rules.d/59-dasd.rules
|
|
@@ -6,7 +6,7 @@
|
|
SUBSYSTEM!="block", GOTO="dasd_symlinks_end"
|
|
KERNEL!="dasd*", GOTO="dasd_symlinks_end"
|
|
|
|
-ACTION!="change", GOTO="dasd_block_end"
|
|
+ACTION!="change|add", GOTO="dasd_block_end"
|
|
# by-id (hardware serial number)
|
|
KERNEL=="dasd*[!0-9]", ATTRS{status}=="online", IMPORT{program}="/sbin/dasdinfo -a -e -b $kernel"
|
|
KERNEL=="dasd*[!0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}"
|