- Remove all patches which went mainline - Fix missing root fs slash in lib/udev/rules.d resulting in: /var/tmp/initramfs.Lusf6flib/udev/rules.d - bcache: removed, it's in the upstream bcache-tools package mainline git commit: 49268028b90f6344f79e3510d2 - Fix bad she-bang in mkinitrd_setup_dummy OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=67
14 lines
619 B
Diff
14 lines
619 B
Diff
Index: dracut-033/dracut-functions.sh
|
|
===================================================================
|
|
--- dracut-033.orig/dracut-functions.sh
|
|
+++ dracut-033/dracut-functions.sh
|
|
@@ -872,7 +872,7 @@ inst_rules() {
|
|
inst_dir "$_target"
|
|
for _rule in "$@"; do
|
|
if [ "${_rule#/}" = "$_rule" ]; then
|
|
- for r in ${udevdir}/rules.d ${hostonly:+/etc/udev/rules.d}; do
|
|
+ for r in ${udevdir}/rules.d /lib/udev/rules.d ${hostonly:+/etc/udev/rules.d}; do
|
|
if [[ -e $r/$_rule ]]; then
|
|
_found="$r/$_rule"
|
|
inst_rule_programs "$_found"
|