FSConfig.py (10224:54d3ef2009a2) FSConfig.py (10353:dfebd39c48a7)
1# Copyright (c) 2010-2012 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

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

216 elif machine_type == "VExpress_EMM64":
217 self.realview = VExpress_EMM64()
218 else:
219 print "Unknown Machine Type"
220 sys.exit(1)
221
222 self.cf0 = CowIdeDisk(driveID='master')
223 self.cf0.childImage(mdesc.disk())
1# Copyright (c) 2010-2012 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

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

216 elif machine_type == "VExpress_EMM64":
217 self.realview = VExpress_EMM64()
218 else:
219 print "Unknown Machine Type"
220 sys.exit(1)
221
222 self.cf0 = CowIdeDisk(driveID='master')
223 self.cf0.childImage(mdesc.disk())
224
225 # Attach any PCI devices this platform supports
226 self.realview.attachPciDevices()
224 # default to an IDE controller rather than a CF one
225 # assuming we've got one; EMM64 is an exception for the moment
226 if machine_type != "VExpress_EMM64":
227 try:
228 self.realview.ide.disks = [self.cf0]
229 except:
230 self.realview.cf_ctrl.disks = [self.cf0]
231 else:

--- 321 unchanged lines hidden ---
227 # default to an IDE controller rather than a CF one
228 # assuming we've got one; EMM64 is an exception for the moment
229 if machine_type != "VExpress_EMM64":
230 try:
231 self.realview.ide.disks = [self.cf0]
232 except:
233 self.realview.cf_ctrl.disks = [self.cf0]
234 else:

--- 321 unchanged lines hidden ---