arm_generic.py (9649:c717bd5e0a1d) arm_generic.py (9665:6dbdeee787cc)
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

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

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,
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

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

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 SimpleDDR3,
64 None, False)
65
66 # We typically want the simulator to panic if the kernel
67 # panics or oopses. This prevents the simulator from running
68 # an obviously failed test case until the end of time.
69 system.panic_on_panic = True
70 system.panic_on_oops = True
71

--- 39 unchanged lines hidden ---
65 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

--- 39 unchanged lines hidden ---