diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-24 13:20:31 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-24 13:20:31 -0700 |
commit | 8572d8fd9190884dc70e9db60f80e4778f65c44b (patch) | |
tree | f7077d1443edbf51d0279df6b9c16ce5e95f8238 /configs/common | |
parent | e983ef9e8c6749c1cd0bf083a2092cb4683d0346 (diff) | |
download | gem5-8572d8fd9190884dc70e9db60f80e4778f65c44b.tar.xz |
config: fixed ruby dma device connections
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/FSConfig.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index d46bec410..6509490d7 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -124,9 +124,10 @@ def makeLinuxAlphaRubySystem(mem_mode, mdesc = None): self.tsunami.ethernet.pio = self.piobus.port # - # store the dma devices for later connection to dma ruby ports + # Store the dma devices for later connection to dma ruby ports. + # Append an underscore to dma_devices to avoid the SimObjectVector check. # - self.dma_devices = [self.tsunami.ide, self.tsunami.ethernet] + self._dma_devices = [self.tsunami.ide, self.tsunami.ethernet] self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(), read_only = True)) |