FSConfig.py (9898:2935441b0870) FSConfig.py (9929:d6f0e70fd0d4)
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

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

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(self.realview.mem_start_addr,
263 size = mdesc.mem())]
264 else:
265 self.kernel = binary('vmlinux.arm.smp.fb.2.6.38.8')
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

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

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(self.realview.mem_start_addr,
263 size = mdesc.mem())]
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
266 if dtb_filename:
267 self.dtb_filename = binary(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"
272 print " another platform"
273 sys.exit(1)
274
275 boot_flags = 'earlyprintk console=ttyAMA0 lpj=19988480 norandmaps ' + \

--- 270 unchanged lines hidden ---
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"
272 print " another platform"
273 sys.exit(1)
274
275 boot_flags = 'earlyprintk console=ttyAMA0 lpj=19988480 norandmaps ' + \

--- 270 unchanged lines hidden ---