FSConfig.py (8323:fd20dcf1a9aa) FSConfig.py (8524:1ddd1aa0e55b)
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

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

205 self.bridge.side_b = self.membus.port
206
207 self.mem_mode = mem_mode
208
209 if machine_type == "RealView_PBX":
210 self.realview = RealViewPBX()
211 elif machine_type == "RealView_EB":
212 self.realview = RealViewEB()
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

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

205 self.bridge.side_b = self.membus.port
206
207 self.mem_mode = mem_mode
208
209 if machine_type == "RealView_PBX":
210 self.realview = RealViewPBX()
211 elif machine_type == "RealView_EB":
212 self.realview = RealViewEB()
213 elif machine_type == "VersatileExpress":
214 self.realview = VExpress()
213 else:
214 print "Unknown Machine Type"
215 sys.exit(1)
216
217 use_cf = False
218 if mdesc.disk()[-4:] == ".img":
219 use_cf = True
220 self.cf0 = CowIdeDisk(driveID='master')

--- 341 unchanged lines hidden ---
215 else:
216 print "Unknown Machine Type"
217 sys.exit(1)
218
219 use_cf = False
220 if mdesc.disk()[-4:] == ".img":
221 use_cf = True
222 self.cf0 = CowIdeDisk(driveID='master')

--- 341 unchanged lines hidden ---