config: correct bug in x86 drive sys instantiation

This commit is contained in:
Nilay Vaish 2014-01-31 15:35:45 -06:00
parent 7f16951451
commit 3526676165

View file

@ -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])