fs.py (7914:eee5bb0fb8ea) fs.py (7925:6823ef6d7a9f)
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

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

126
127if buildEnv['TARGET_ISA'] == "alpha":
128 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0])
129elif buildEnv['TARGET_ISA'] == "mips":
130 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0])
131elif buildEnv['TARGET_ISA'] == "sparc":
132 test_sys = makeSparcSystem(test_mem_mode, bm[0])
133elif buildEnv['TARGET_ISA'] == "x86":
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

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

126
127if buildEnv['TARGET_ISA'] == "alpha":
128 test_sys = makeLinuxAlphaSystem(test_mem_mode, bm[0])
129elif buildEnv['TARGET_ISA'] == "mips":
130 test_sys = makeLinuxMipsSystem(test_mem_mode, bm[0])
131elif buildEnv['TARGET_ISA'] == "sparc":
132 test_sys = makeSparcSystem(test_mem_mode, bm[0])
133elif buildEnv['TARGET_ISA'] == "x86":
134 test_sys = makeLinuxX86System(test_mem_mode, options, bm[0])
134 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
135 setWorkCountOptions(test_sys, options)
135elif buildEnv['TARGET_ISA'] == "arm":
136 test_sys = makeLinuxArmSystem(test_mem_mode, bm[0],
137 bare_metal=options.bare_metal, machine_type=options.machine_type)
138else:
139 fatal("incapable of building non-alpha or non-sparc full system!")
140
141if options.kernel is not None:
142 test_sys.kernel = binary(options.kernel)

--- 62 unchanged lines hidden ---
136elif buildEnv['TARGET_ISA'] == "arm":
137 test_sys = makeLinuxArmSystem(test_mem_mode, bm[0],
138 bare_metal=options.bare_metal, machine_type=options.machine_type)
139else:
140 fatal("incapable of building non-alpha or non-sparc full system!")
141
142if options.kernel is not None:
143 test_sys.kernel = binary(options.kernel)

--- 62 unchanged lines hidden ---