Browse Source

Add new s390x-specific rule files

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>
master
Hannes Reinecke 11 years ago committed by Daniel Molkentin
parent
commit
55c763b1ff
  1. 4
      modules.d/95dasd_rules/module-setup.sh
  2. 1
      modules.d/95zfcp_rules/module-setup.sh

4
modules.d/95dasd_rules/module-setup.sh

@ -4,7 +4,7 @@
check() { check() {
local _arch=$(uname -m) local _arch=$(uname -m)
[ "$_arch" = "s390" -o "$_arch" = "s390x" ] || return 1 [ "$_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 return 0
} }


@ -16,10 +16,10 @@ depends() {


# called by dracut # called by dracut
install() { install() {
inst_multiple /usr/lib/udev/collect
inst_hook cmdline 30 "$moddir/parse-dasd.sh" inst_hook cmdline 30 "$moddir/parse-dasd.sh"
if [[ $hostonly ]] ; then if [[ $hostonly ]] ; then
inst_rules_wildcard 51-dasd-*.rules inst_rules_wildcard 51-dasd-*.rules
inst_rules_wildcard 41-s390x-dasd-*.rules
fi fi
inst_rules 59-dasd.rules inst_rules 59-dasd.rules
} }

1
modules.d/95zfcp_rules/module-setup.sh

@ -56,5 +56,6 @@ install() {
fi fi
if [[ $hostonly ]] ; then if [[ $hostonly ]] ; then
inst_rules_wildcard 51-zfcp-*.rules inst_rules_wildcard 51-zfcp-*.rules
inst_rules_wildcard 41-s390x-zfcp-*.rules
fi fi
} }

Loading…
Cancel
Save