From ede586b0730d6d91941cf2d8c1b6404920bf8bd2 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Apr 20 2011 14:33:25 +0000 Subject: Write 'edd' instead of 'ethX' for fcoe= dracut parameter. dracut-004-52 has changed so that the network device name is not required in the fcoe= parameter. We still need to determine if we need to pass dcb or nodcb though. Related: rhbz#692939 (cherry picked from commit 03890d9bad5a34225650a9bbb6383016120d6876) --- diff --git a/pyanaconda/storage/devices.py b/pyanaconda/storage/devices.py index b2d6dd8..a1c2dfa 100644 --- a/pyanaconda/storage/devices.py +++ b/pyanaconda/storage/devices.py @@ -3606,7 +3606,7 @@ class FcoeDiskDevice(DiskDevice, NetworkStorageDevice): else: dcbOpt = "nodcb" - return "fcoe=%s:%s" % (self.nic, dcbOpt) + return "fcoe=edd:%s" % dcbOpt class OpticalDevice(StorageDevice):