FSConfig.py (12598:b80b2d9a251b) FSConfig.py (13015:9e48c6a83b85)
1# Copyright (c) 2010-2012, 2015-2018 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

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

299 fatal("The currently selected ARM platforms doesn't support" \
300 " the amount of DRAM you've selected. Please try" \
301 " another platform")
302
303 self.have_security = security
304
305 if bare_metal:
306 # EOT character on UART will end the simulation
1# Copyright (c) 2010-2012, 2015-2018 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

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

299 fatal("The currently selected ARM platforms doesn't support" \
300 " the amount of DRAM you've selected. Please try" \
301 " another platform")
302
303 self.have_security = security
304
305 if bare_metal:
306 # EOT character on UART will end the simulation
307 self.realview.uart.end_on_eot = True
307 self.realview.uart[0].end_on_eot = True
308 else:
309 if machine_type in default_kernels:
310 self.kernel = binary(default_kernels[machine_type])
311
312 if dtb_filename and not ignore_dtb:
313 self.dtb_filename = binary(dtb_filename)
314
315 self.machine_type = machine_type if machine_type in ArmMachineType.map \

--- 425 unchanged lines hidden ---
308 else:
309 if machine_type in default_kernels:
310 self.kernel = binary(default_kernels[machine_type])
311
312 if dtb_filename and not ignore_dtb:
313 self.dtb_filename = binary(dtb_filename)
314
315 self.machine_type = machine_type if machine_type in ArmMachineType.map \

--- 425 unchanged lines hidden ---