summaryrefslogtreecommitdiff
path: root/configs/example/fs.py
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2014-01-31 15:35:45 -0600
committerNilay Vaish <nilay@cs.wisc.edu>2014-01-31 15:35:45 -0600
commit35266761659ce3efbc1a7e7f1289d90aeddb7db8 (patch)
tree0841c0ae4272ca9dcc8c62b904054d3852b7649f /configs/example/fs.py
parent7f169514518fa3124c26e5488ed3f7c90881c363 (diff)
downloadgem5-35266761659ce3efbc1a7e7f1289d90aeddb7db8.tar.xz
config: correct bug in x86 drive sys instantiation
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r--configs/example/fs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index 824c4a2dc..f53f5f151 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -191,7 +191,7 @@ if len(bm) == 2:
elif buildEnv['TARGET_ISA'] == 'sparc':
drive_sys = makeSparcSystem(drive_mem_mode, bm[1])
elif buildEnv['TARGET_ISA'] == 'x86':
- drive_sys = makeX86System(drive_mem_mode, np, bm[1])
+ drive_sys = makeLinuxX86System(drive_mem_mode, np, bm[1])
elif buildEnv['TARGET_ISA'] == 'arm':
drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, bm[1])