]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
Add new s390x-specific rule files
authorHannes Reinecke <hare@suse.de>
Tue, 21 Jan 2014 13:32:09 +0000 (14:32 +0100)
committerDaniel Molkentin <dmolkentin@suse.com>
Fri, 23 Jun 2017 19:26:27 +0000 (21:26 +0200)
With the new s390x configuration tool the naming of the udev
rules files have changed. So add these to the existing ones
to be compatible with existing and new installations.

References: bnc#856585

Signed-off-by: Hannes Reinecke <hare@suse.de>
modules.d/95dasd_rules/module-setup.sh
modules.d/95zfcp_rules/module-setup.sh

index 80887dede61ce502d265607cfbc84f34909b4c4f..acdf1e726c2ff29284a4b2f5ff442f9d588d0f01 100755 (executable)
@@ -4,7 +4,7 @@
 check() {
     local _arch=$(uname -m)
     [ "$_arch" = "s390" -o "$_arch" = "s390x" ] || return 1
-    require_binaries dasd_configure /usr/lib/udev/collect || return 1
+    require_binaries /usr/lib/udev/collect || return 1
     return 0
 }
 
@@ -16,10 +16,10 @@ depends() {
 
 # called by dracut
 install() {
-    inst_multiple /usr/lib/udev/collect
     inst_hook cmdline 30 "$moddir/parse-dasd.sh"
     if [[ $hostonly ]] ; then
         inst_rules_wildcard 51-dasd-*.rules
+        inst_rules_wildcard 41-s390x-dasd-*.rules
     fi
     inst_rules 59-dasd.rules
 }
index eed6ffd2e5de0a2f6e249338d282d6a3da009163..d6a33b13d9d287d6934b0c1aa6a4b8ae8c1b34a6 100755 (executable)
@@ -56,5 +56,6 @@ install() {
     fi
     if [[ $hostonly ]] ; then
         inst_rules_wildcard 51-zfcp-*.rules
+        inst_rules_wildcard 41-s390x-zfcp-*.rules
     fi
 }