]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fcoe-uefi/parse-uefifcoe.sh: fixed parameter generation from UEFI
authorHarald Hoyer <harald@redhat.com>
Tue, 20 May 2014 09:22:26 +0000 (11:22 +0200)
committerHarald Hoyer <harald@redhat.com>
Tue, 20 May 2014 09:22:26 +0000 (11:22 +0200)
"fcoe=" was missing for the parameter specifying the interface

modules.d/95fcoe-uefi/parse-uefifcoe.sh

index 0799cdd64fbe627b3a8abe15823bc33607addb28..7b8f1a6f67bcc6a8e2114a1b1c1e970c7975f863 100755 (executable)
@@ -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
 }