fs.py (9059:95b525b1d3a0) fs.py (9060:ee4104e628f3)
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

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

140for i in xrange(np):
141 if options.fastmem:
142 test_sys.cpu[i].fastmem = True
143 if options.checker:
144 test_sys.cpu[i].addCheckerCpu()
145
146CacheConfig.config_cache(options, test_sys)
147
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

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

140for i in xrange(np):
141 if options.fastmem:
142 test_sys.cpu[i].fastmem = True
143 if options.checker:
144 test_sys.cpu[i].addCheckerCpu()
145
146CacheConfig.config_cache(options, test_sys)
147
148if buildEnv['TARGET_ISA'] == 'mips':
149 setMipsOptions(TestCPUClass)
150
151if len(bm) == 2:
152 if buildEnv['TARGET_ISA'] == 'alpha':
153 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1])
154 elif buildEnv['TARGET_ISA'] == 'mips':
155 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1])
156 elif buildEnv['TARGET_ISA'] == 'sparc':
157 drive_sys = makeSparcSystem(drive_mem_mode, bm[1])
158 elif buildEnv['TARGET_ISA'] == 'x86':

--- 31 unchanged lines hidden ---
148if len(bm) == 2:
149 if buildEnv['TARGET_ISA'] == 'alpha':
150 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1])
151 elif buildEnv['TARGET_ISA'] == 'mips':
152 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1])
153 elif buildEnv['TARGET_ISA'] == 'sparc':
154 drive_sys = makeSparcSystem(drive_mem_mode, bm[1])
155 elif buildEnv['TARGET_ISA'] == 'x86':

--- 31 unchanged lines hidden ---