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

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