Blame SOURCES/0173-fcoe-uefi-parse-uefifcoe.sh-fixed-parameter-generati.patch

712866
From e92a7a25321d46da1c1f9d015a20b3759de10be4 Mon Sep 17 00:00:00 2001
712866
From: Harald Hoyer <harald@redhat.com>
712866
Date: Tue, 20 May 2014 11:22:26 +0200
712866
Subject: [PATCH] fcoe-uefi/parse-uefifcoe.sh: fixed parameter generation from
712866
 UEFI
712866
712866
"fcoe=" was missing for the parameter specifying the interface
712866
712866
(cherry picked from commit 142710269279db70fceb3e76a077f3d6a89a84a5)
712866
---
712866
 modules.d/95fcoe-uefi/parse-uefifcoe.sh | 2 +-
712866
 1 file changed, 1 insertion(+), 1 deletion(-)
712866
712866
diff --git a/modules.d/95fcoe-uefi/parse-uefifcoe.sh b/modules.d/95fcoe-uefi/parse-uefifcoe.sh
5c6c2a
index 0799cdd6..7b8f1a6f 100755
712866
--- a/modules.d/95fcoe-uefi/parse-uefifcoe.sh
712866
+++ b/modules.d/95fcoe-uefi/parse-uefifcoe.sh
712866
@@ -26,7 +26,7 @@ print_fcoe_uefi_conf()
712866
         esac
712866
     fi
712866
     # fcoe=eth0:nodcb
712866
-    printf "%s\n" "$dev:nodcb"
712866
+    printf "fcoe=%s\n" "$dev:nodcb"
712866
     return 0
712866
 }
712866