arm_generic.py (9728:7daeab1685e9) arm_generic.py (9826:014ff1fbff6d)
1# Copyright (c) 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

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

55 """
56 Arguments:
57 machine_type -- String describing the platform to simulate
58 """
59 self.machine_type = machine_type
60
61 def create_system(self):
62 system = FSConfig.makeArmSystem(self.mem_mode,
1# Copyright (c) 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

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

55 """
56 Arguments:
57 machine_type -- String describing the platform to simulate
58 """
59 self.machine_type = machine_type
60
61 def create_system(self):
62 system = FSConfig.makeArmSystem(self.mem_mode,
63 self.machine_type,
64 DDR3_1600_x64,
65 None, False)
63 self.machine_type, None, False)
66
67 # We typically want the simulator to panic if the kernel
68 # panics or oopses. This prevents the simulator from running
69 # an obviously failed test case until the end of time.
70 system.panic_on_panic = True
71 system.panic_on_oops = True
72
73 self.init_system(system)

--- 38 unchanged lines hidden ---
64
65 # We typically want the simulator to panic if the kernel
66 # panics or oopses. This prevents the simulator from running
67 # an obviously failed test case until the end of time.
68 system.panic_on_panic = True
69 system.panic_on_oops = True
70
71 self.init_system(system)

--- 38 unchanged lines hidden ---