FSConfig.py (7586:da93206873dc) FSConfig.py (7633:d8112aa18a1b)
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 110 unchanged lines hidden (view full) ---

119 self.disk0.childImage(mdesc.disk())
120 self.disk2.childImage(disk('linux-bigswap2.img'))
121 self.tsunami = BaseTsunami()
122 self.tsunami.attachIO(self.piobus)
123 self.tsunami.ide.pio = self.piobus.port
124 self.tsunami.ethernet.pio = self.piobus.port
125
126 #
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 110 unchanged lines hidden (view full) ---

119 self.disk0.childImage(mdesc.disk())
120 self.disk2.childImage(disk('linux-bigswap2.img'))
121 self.tsunami = BaseTsunami()
122 self.tsunami.attachIO(self.piobus)
123 self.tsunami.ide.pio = self.piobus.port
124 self.tsunami.ethernet.pio = self.piobus.port
125
126 #
127 # store the dma devices for later connection to dma ruby ports
127 # Store the dma devices for later connection to dma ruby ports.
128 # Append an underscore to dma_devices to avoid the SimObjectVector check.
128 #
129 #
129 self.dma_devices = [self.tsunami.ide, self.tsunami.ethernet]
130 self._dma_devices = [self.tsunami.ide, self.tsunami.ethernet]
130
131 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
132 read_only = True))
133 self.intrctrl = IntrControl()
134 self.mem_mode = mem_mode
135 self.terminal = Terminal()
136 self.kernel = binary('vmlinux')
137 self.pal = binary('ts_osfpal')

--- 341 unchanged lines hidden ---
131
132 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
133 read_only = True))
134 self.intrctrl = IntrControl()
135 self.mem_mode = mem_mode
136 self.terminal = Terminal()
137 self.kernel = binary('vmlinux')
138 self.pal = binary('ts_osfpal')

--- 341 unchanged lines hidden ---