You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
859 B

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