fs.py (8659:78f27ef5e919) fs.py (8661:2d791d07c59b)
1# Copyright (c) 2010 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

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

187 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1])
188 elif buildEnv['TARGET_ISA'] == 'mips':
189 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1])
190 elif buildEnv['TARGET_ISA'] == 'sparc':
191 drive_sys = makeSparcSystem(drive_mem_mode, bm[1])
192 elif buildEnv['TARGET_ISA'] == 'x86':
193 drive_sys = makeX86System(drive_mem_mode, np, bm[1])
194 elif buildEnv['TARGET_ISA'] == 'arm':
1# Copyright (c) 2010 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

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

187 drive_sys = makeLinuxAlphaSystem(drive_mem_mode, bm[1])
188 elif buildEnv['TARGET_ISA'] == 'mips':
189 drive_sys = makeLinuxMipsSystem(drive_mem_mode, bm[1])
190 elif buildEnv['TARGET_ISA'] == 'sparc':
191 drive_sys = makeSparcSystem(drive_mem_mode, bm[1])
192 elif buildEnv['TARGET_ISA'] == 'x86':
193 drive_sys = makeX86System(drive_mem_mode, np, bm[1])
194 elif buildEnv['TARGET_ISA'] == 'arm':
195 drive_sys = makeArmSystem(drive_mem_mode,
196 machine_options.machine_type, bm[1])
195 drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, bm[1])
196
197 drive_sys.cpu = DriveCPUClass(cpu_id=0)
198 drive_sys.cpu.connectAllPorts(drive_sys.membus)
199 if options.fastmem:
200 drive_sys.cpu.physmem_port = drive_sys.physmem.port
201 if options.kernel is not None:
202 drive_sys.kernel = binary(options.kernel)
203
204 drive_sys.init_param = options.init_param

--- 14 unchanged lines hidden ---
197 drive_sys.cpu = DriveCPUClass(cpu_id=0)
198 drive_sys.cpu.connectAllPorts(drive_sys.membus)
199 if options.fastmem:
200 drive_sys.cpu.physmem_port = drive_sys.physmem.port
201 if options.kernel is not None:
202 drive_sys.kernel = binary(options.kernel)
203
204 drive_sys.init_param = options.init_param

--- 14 unchanged lines hidden ---