FSConfig.py (10003:459491344fcf) FSConfig.py (10037:5cac77888310)
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

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

237 if machine_type == "RealView_PBX":
238 self.realview = RealViewPBX()
239 elif machine_type == "RealView_EB":
240 self.realview = RealViewEB()
241 elif machine_type == "VExpress_ELT":
242 self.realview = VExpress_ELT()
243 elif machine_type == "VExpress_EMM":
244 self.realview = VExpress_EMM()
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

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

237 if machine_type == "RealView_PBX":
238 self.realview = RealViewPBX()
239 elif machine_type == "RealView_EB":
240 self.realview = RealViewEB()
241 elif machine_type == "VExpress_ELT":
242 self.realview = VExpress_ELT()
243 elif machine_type == "VExpress_EMM":
244 self.realview = VExpress_EMM()
245 self.load_addr_mask = 0xffffffff
245 elif machine_type == "VExpress_EMM64":
246 self.realview = VExpress_EMM64()
246 else:
247 print "Unknown Machine Type"
248 sys.exit(1)
249
250 self.cf0 = CowIdeDisk(driveID='master')
251 self.cf0.childImage(mdesc.disk())
252 # default to an IDE controller rather than a CF one
253 # assuming we've got one

--- 293 unchanged lines hidden ---
247 else:
248 print "Unknown Machine Type"
249 sys.exit(1)
250
251 self.cf0 = CowIdeDisk(driveID='master')
252 self.cf0.childImage(mdesc.disk())
253 # default to an IDE controller rather than a CF one
254 # assuming we've got one

--- 293 unchanged lines hidden ---