[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH master] kickstart network --device=bootif value processing in stage2 fixed
- From: Vratislav Podzimek <vpodzime redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH master] kickstart network --device=bootif value processing in stage2 fixed
- Date: Wed, 9 Mar 2011 12:38:13 +0100
---
pyanaconda/kickstart.py | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/pyanaconda/kickstart.py b/pyanaconda/kickstart.py
index 5fe4cd8..9f9d1ad 100644
--- a/pyanaconda/kickstart.py
+++ b/pyanaconda/kickstart.py
@@ -601,6 +601,14 @@ class NetworkData(commands.network.F16_NetworkData):
else:
device = self.device
+ # If 'bootif' value of network --device is used use MAC address
+ # from cmdline, remove "01-" from the begining and edit value for further
+ # processing
+ if self.device.lower() == "bootif":
+ if "BOOTIF" in flags.cmdline:
+ device = flags.cmdline["BOOTIF"][3:]
+ device = device.replace("-",":")
+
# If we were given a network device name, grab the device object.
# If we were given a MAC address, resolve that to a device name
# and then grab the device object. Otherwise, errors.
--
1.7.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]