config: remove unecessary assignment of etherlink interfaces
authorAnthony Gutierrez <atgutier@umich.edu>
Thu, 15 May 2014 17:26:31 +0000 (13:26 -0400)
committerAnthony Gutierrez <atgutier@umich.edu>
Thu, 15 May 2014 17:26:31 +0000 (13:26 -0400)
in makeDualRoot() the etherlink interfaces are set using the tsunami interface
however, they are set again a few lines later based on whether or not the system
is a realview or tsunami system; the original assignment is always overwritten
or there will be a fatal. this seems like an artifact from when tsunami was the
only type of system capable of running with the dual option.

configs/common/FSConfig.py

index 57d6aa2b29b180411db5b845c24ad84438f8c1a4..dc24adf6fcad6db06b78b587fbb818edddd4c39b 100644 (file)
@@ -535,8 +535,6 @@ def makeDualRoot(full_system, testSystem, driveSystem, dumpfile):
     self.testsys = testSystem
     self.drivesys = driveSystem
     self.etherlink = EtherLink()
-    self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
-    self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
 
     if hasattr(testSystem, 'realview'):
         self.etherlink.int0 = Parent.testsys.realview.ethernet.interface