diff options
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r-- | configs/example/fs.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index 9c5ef1798..bf6ae45dd 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -89,11 +89,11 @@ def build_test_system(np): elif buildEnv['TARGET_ISA'] == "sparc": test_sys = makeSparcSystem(test_mem_mode, bm[0], cmdline=cmdline) elif buildEnv['TARGET_ISA'] == "x86": - test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0], - options.ruby, cmdline=cmdline) + test_sys = makeLinuxX86System(test_mem_mode, np, bm[0], options.ruby, + cmdline=cmdline) elif buildEnv['TARGET_ISA'] == "arm": - test_sys = makeArmSystem(test_mem_mode, options.machine_type, - options.num_cpus, bm[0], options.dtb_filename, + test_sys = makeArmSystem(test_mem_mode, options.machine_type, np, + bm[0], options.dtb_filename, bare_metal=options.bare_metal, cmdline=cmdline, external_memory= |