FSConfig.py (9826:014ff1fbff6d) FSConfig.py (9845:3f6e2f267aba)
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

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

254 try:
255 self.realview.ide.disks = [self.cf0]
256 except:
257 self.realview.cf_ctrl.disks = [self.cf0]
258
259 if bare_metal:
260 # EOT character on UART will end the simulation
261 self.realview.uart.end_on_eot = True
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

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

254 try:
255 self.realview.ide.disks = [self.cf0]
256 except:
257 self.realview.cf_ctrl.disks = [self.cf0]
258
259 if bare_metal:
260 # EOT character on UART will end the simulation
261 self.realview.uart.end_on_eot = True
262 self.mem_ranges = [AddrRange(mdesc.mem())]
262 self.mem_ranges = [AddrRange(self.realview.mem_start_addr,
263 size = mdesc.mem())]
263 else:
264 self.kernel = binary('vmlinux.arm.smp.fb.2.6.38.8')
265 if dtb_filename is not None:
266 self.dtb_filename = dtb_filename
267 self.machine_type = machine_type
268 if convert.toMemorySize(mdesc.mem()) > int(self.realview.max_mem_size):
269 print "The currently selected ARM platforms doesn't support"
270 print " the amount of DRAM you've selected. Please try"

--- 271 unchanged lines hidden ---
264 else:
265 self.kernel = binary('vmlinux.arm.smp.fb.2.6.38.8')
266 if dtb_filename is not None:
267 self.dtb_filename = dtb_filename
268 self.machine_type = machine_type
269 if convert.toMemorySize(mdesc.mem()) > int(self.realview.max_mem_size):
270 print "The currently selected ARM platforms doesn't support"
271 print " the amount of DRAM you've selected. Please try"

--- 271 unchanged lines hidden ---