bb76751d8a
- Rediff patches to match git repository - 95fcoe: Check for FCoE devices prior to binaries * Modify 0055-95fcoe-Only-install-fcoe-module-if-required.patch - 99base: Install chown instead of chgrp * Modify 0052-99base-Add-chown-binary.patch - 95iscsi: do not try to detect iSCSI firmware during booting; should be handled via commandline parameter * Modify 0030-95iscsi-Autodetect-iSCSI-firmware.patch - Rename patch: * old: 0051-mkinitrd-suse-add-update-booloader-message.patch new: 0051-mkinitrd-suse-add-update-bootloader-message.patch OBS-URL: https://build.opensuse.org/request/show/236229 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=157
49 lines
1.8 KiB
Diff
49 lines
1.8 KiB
Diff
From 08f0ec43bed63ccd72b1ea9d20c36d3fe1d91a2e Mon Sep 17 00:00:00 2001
|
|
From: Thomas Renninger <trenn@suse.de>
|
|
Date: Tue, 27 May 2014 14:58:54 +0200
|
|
Subject: [PATCH] dracut: Do not stop installing drivers if one fails
|
|
|
|
--add-drivers and --filesystems kernel drivers are added via:
|
|
instmods -c
|
|
The check option makes the function return if one driver could not get
|
|
installed without trying to install further drivers which is bad.
|
|
|
|
The user is still informed ($_silent is by default no), but all modules
|
|
passed to instmods are tried to be loaded, even if one fails.
|
|
|
|
Signed-off-by: Thomas Renninger <trenn@suse.de>
|
|
---
|
|
dracut-functions.sh | 10 ++++------
|
|
1 file changed, 4 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/dracut-functions.sh b/dracut-functions.sh
|
|
index ac22b7e..5b3b1fb 100755
|
|
--- a/dracut-functions.sh
|
|
+++ b/dracut-functions.sh
|
|
@@ -1689,18 +1689,16 @@ instmods() {
|
|
if (($# == 0)); then # filenames from stdin
|
|
while read _mod; do
|
|
inst1mod "${_mod%.ko*}" || {
|
|
- if [[ "$_check" == "yes" ]]; then
|
|
- [[ "$_silent" == "no" ]] && dfatal "Failed to install module $_mod"
|
|
- return 1
|
|
+ if [[ "$_check" == "yes" ]] && [[ "$_silent" == "no" ]]; then
|
|
+ dfatal "Failed to install module $_mod"
|
|
fi
|
|
}
|
|
done
|
|
fi
|
|
while (($# > 0)); do # filenames as arguments
|
|
inst1mod ${1%.ko*} || {
|
|
- if [[ "$_check" == "yes" ]]; then
|
|
- [[ "$_silent" == "no" ]] && dfatal "Failed to install module $1"
|
|
- return 1
|
|
+ if [[ "$_check" == "yes" ]] && [[ "$_silent" == "no" ]]; then
|
|
+ dfatal "Failed to install module $1"
|
|
fi
|
|
}
|
|
shift
|
|
--
|
|
1.8.4.5
|
|
|