diff options
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)) |