fs.py (8061:08e91664adac) fs.py (8354:26be660e365a)
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

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

132 test_sys = makeSparcSystem(test_mem_mode, bm[0])
133elif buildEnv['TARGET_ISA'] == "x86":
134 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
135 setWorkCountOptions(test_sys, options)
136elif buildEnv['TARGET_ISA'] == "arm":
137 test_sys = makeArmSystem(test_mem_mode,
138 options.machine_type, bm[0],
139 bare_metal=options.bare_metal)
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

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

132 test_sys = makeSparcSystem(test_mem_mode, bm[0])
133elif buildEnv['TARGET_ISA'] == "x86":
134 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
135 setWorkCountOptions(test_sys, options)
136elif buildEnv['TARGET_ISA'] == "arm":
137 test_sys = makeArmSystem(test_mem_mode,
138 options.machine_type, bm[0],
139 bare_metal=options.bare_metal)
140 setWorkCountOptions(test_sys, options)
140else:
141 fatal("incapable of building non-alpha or non-sparc full system!")
142
143if options.kernel is not None:
144 test_sys.kernel = binary(options.kernel)
145
146if options.script is not None:
147 test_sys.readfile = options.script

--- 60 unchanged lines hidden ---
141else:
142 fatal("incapable of building non-alpha or non-sparc full system!")
143
144if options.kernel is not None:
145 test_sys.kernel = binary(options.kernel)
146
147if options.script is not None:
148 test_sys.readfile = options.script

--- 60 unchanged lines hidden ---