From: Nilay Vaish Date: Fri, 31 Jan 2014 21:35:45 +0000 (-0600) Subject: config: correct bug in x86 drive sys instantiation X-Git-Tag: stable_2014_08_26~175 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35266761659ce3efbc1a7e7f1289d90aeddb7db8;p=gem5.git config: correct bug in x86 drive sys instantiation --- 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])