9f28177407
- Update to dracut mainline version 041. Half of the patches got integrated mainline. Some others have been merged together when it made sense some have been left out, but are still in the repository as they need some special treating and mainline discussion whether/how they get added. These are also not urgently needed, but are debugging patches. I broke the rule here to mention every added/deleted/modified patch as every patch is touched and every 2nd got removed (mainline integrated). I also re-ordered the patches in the PatchXY: area for easier merging them and get them discussed and posted mainline easier, topic by topic. OBS-URL: https://build.opensuse.org/request/show/293267 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=214
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 0299c9f31fb0c5794747a6a7f62c32abd9a49754 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Thu, 10 Jul 2014 14:56:54 +0200
|
|
Subject: 95dasd_rules: Store all devices in commandline
|
|
|
|
'for_each_host_dev_and_slaves' would stop at the first found
|
|
device, so the cmdline() call would never list all required
|
|
devices. Use 'for_each_host_dev_and_slaves_all' instead and
|
|
filter out duplicates.
|
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de>
|
|
---
|
|
modules.d/95dasd_rules/module-setup.sh | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
Index: dracut-041/modules.d/95dasd_rules/module-setup.sh
|
|
===================================================================
|
|
--- dracut-041.orig/modules.d/95dasd_rules/module-setup.sh 2015-03-24 15:14:26.249231803 +0100
|
|
+++ dracut-041/modules.d/95dasd_rules/module-setup.sh 2015-03-24 15:15:39.977372818 +0100
|
|
@@ -12,8 +12,8 @@
|
|
return 0
|
|
}
|
|
[[ $hostonly ]] || [[ $mount_needs ]] && {
|
|
- for_each_host_dev_and_slaves is_dasd || return 255
|
|
- }
|
|
+ for_each_host_dev_and_slaves_all is_dasd || return 255
|
|
+ } | sort | uniq
|
|
}
|
|
|
|
# called by dracut
|