fs.py (8956:1df031399919) fs.py (9059:95b525b1d3a0)
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

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

102 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
103 Simulation.setWorkCountOptions(test_sys, options)
104elif buildEnv['TARGET_ISA'] == "arm":
105 test_sys = makeArmSystem(test_mem_mode,
106 options.machine_type, bm[0],
107 bare_metal=options.bare_metal)
108 Simulation.setWorkCountOptions(test_sys, options)
109else:
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

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

102 test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
103 Simulation.setWorkCountOptions(test_sys, options)
104elif buildEnv['TARGET_ISA'] == "arm":
105 test_sys = makeArmSystem(test_mem_mode,
106 options.machine_type, bm[0],
107 bare_metal=options.bare_metal)
108 Simulation.setWorkCountOptions(test_sys, options)
109else:
110 fatal("incapable of building non-alpha or non-sparc full system!")
110 fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
111
112if options.kernel is not None:
113 test_sys.kernel = binary(options.kernel)
114
115if options.script is not None:
116 test_sys.readfile = options.script
117
118test_sys.init_param = options.init_param

--- 71 unchanged lines hidden ---
111
112if options.kernel is not None:
113 test_sys.kernel = binary(options.kernel)
114
115if options.script is not None:
116 test_sys.readfile = options.script
117
118test_sys.init_param = options.init_param

--- 71 unchanged lines hidden ---