Daniel Molkentin changed bug 1140730
What Removed Added
CC   fbui@suse.com

Comment # 1 on bug 1140730 from
Hi Berthold, thanks for the headsup. I was about to claim that this is fixed
once we get dracut 049 back into factory, but this turns out to be untrue,
actually this is a two-fold problem:

https://github.com/dracutdevs/dracut/pull/565 fixes the a routine in dracut.sh.
We should adopt this, but this is not our problem.

We have the following occurances in our modules:

95dasd_rules/module-setup.sh:    require_binaries /usr/lib/udev/collect ||
return 1
95dasd_rules/module-setup.sh:    inst_multiple /usr/lib/udev/collect
95dasd_rules/parse-dasd.sh:ACTION=="add", SUBSYSTEM=="ccw", KERNEL=="$ccw",
IMPORT{program}="collect $ccw %k ${ccw} $_drv"
95dasd_rules/parse-dasd.sh:ACTION=="add", SUBSYSTEM=="drivers",
KERNEL=="$_drv", IMPORT{program}="collect $ccw %k ${ccw} $_drv"

95qeth_rules/module-setup.sh:    require_binaries /usr/lib/udev/collect ||
return 1
95qeth_rules/module-setup.sh:    inst_simple /usr/lib/udev/collect

95zfcp_rules/module-setup.sh:    require_binaries /usr/lib/udev/collect ||
return 1
95zfcp_rules/module-setup.sh:    inst_multiple /usr/lib/udev/collect
95zfcp_rules/parse-zfcp.sh:ACTION=="add", SUBSYSTEM=="ccw", KERNEL=="$ccw",
IMPORT{program}="collect $ccw %k ${ccw} zfcp"
95zfcp_rules/parse-zfcp.sh:ACTION=="add", SUBSYSTEM=="drivers", KERNEL=="zfcp",
IMPORT{program}="collect $ccw %k ${ccw} zfcp"

This 95qeth_rules module doesn't really require it, but the other two do. Any
suggestion what might replace collect here?


You are receiving this mail because: