summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
Diffstat (limited to 'configs')
-rw-r--r--configs/example/fs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index d505443f0..a6d4869f3 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -100,12 +100,10 @@ elif buildEnv['TARGET_ISA'] == "sparc":
test_sys = makeSparcSystem(test_mem_mode, bm[0])
elif buildEnv['TARGET_ISA'] == "x86":
test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0])
- Simulation.setWorkCountOptions(test_sys, options)
elif buildEnv['TARGET_ISA'] == "arm":
test_sys = makeArmSystem(test_mem_mode,
options.machine_type, bm[0],
bare_metal=options.bare_metal)
- Simulation.setWorkCountOptions(test_sys, options)
else:
fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA'])
@@ -183,4 +181,5 @@ if options.timesync:
if options.frame_capture:
VncServer.frame_capture = True
+Simulation.setWorkCountOptions(test_sys, options)
Simulation.run(options, root, test_sys, FutureClass)