diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2014-05-15 13:26:31 -0400 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2014-05-15 13:26:31 -0400 |
commit | 53dd4497b3e554869adb9c7faede24e4fd797319 (patch) | |
tree | 45e428ed363874b0fa427042cfe5b5eb4fd981b1 /configs/common/FSConfig.py | |
parent | 109908c2a6322d1fa31c0b486ea2bada14a292b8 (diff) | |
download | gem5-53dd4497b3e554869adb9c7faede24e4fd797319.tar.xz |
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.
Diffstat (limited to 'configs/common/FSConfig.py')
-rw-r--r-- | configs/common/FSConfig.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 57d6aa2b2..dc24adf6f 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -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 |