config: remove unecessary assignment of etherlink interfaces
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.
This commit is contained in:
parent
109908c2a6
commit
53dd4497b3
1 changed files with 0 additions and 2 deletions
|
@ -535,8 +535,6 @@ def makeDualRoot(full_system, testSystem, driveSystem, dumpfile):
|
||||||
self.testsys = testSystem
|
self.testsys = testSystem
|
||||||
self.drivesys = driveSystem
|
self.drivesys = driveSystem
|
||||||
self.etherlink = EtherLink()
|
self.etherlink = EtherLink()
|
||||||
self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
|
|
||||||
self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
|
|
||||||
|
|
||||||
if hasattr(testSystem, 'realview'):
|
if hasattr(testSystem, 'realview'):
|
||||||
self.etherlink.int0 = Parent.testsys.realview.ethernet.interface
|
self.etherlink.int0 = Parent.testsys.realview.ethernet.interface
|
||||||
|
|
Loading…
Reference in a new issue