From: Curtis Dunham Date: Fri, 29 Jan 2016 23:47:15 +0000 (-0600) Subject: ext: remove redundant parameter in example SST+gem5 test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe32b40269f41faa64db712334f1891d0e6d9a35;p=gem5.git ext: remove redundant parameter in example SST+gem5 test The SST connector automatically adds --initialize-only to the gem5 "command line" (as it should); the config script doesn't need it. --- diff --git a/ext/sst/tests/test6_arm_4c.py b/ext/sst/tests/test6_arm_4c.py index e8683145e..bf2cb9ab8 100644 --- a/ext/sst/tests/test6_arm_4c.py +++ b/ext/sst/tests/test6_arm_4c.py @@ -90,7 +90,7 @@ GEM5.addParams({ "comp_debug" : getenv("GEM5_DEBUG"), "gem5DebugFlags" : getenv("M5_DEBUG"), "frequency" : clockRate, - "cmd" : "configs/example/fs.py --num-cpus 4 --disk-image=vexpress64-openembedded_minimal-armv8_20130623-376.img --root-device=/dev/sda2 --kernel=vmlinux.aarch64.20140821 --dtb-filename=vexpress.aarch64.20140821.dtb --mem-size=256MB --machine-type=VExpress_EMM64 --cpu-type=timing --external-memory-system=sst --initialize-only" + "cmd" : "configs/example/fs.py --num-cpus 4 --disk-image=vexpress64-openembedded_minimal-armv8_20130623-376.img --root-device=/dev/sda2 --kernel=vmlinux.aarch64.20140821 --dtb-filename=vexpress.aarch64.20140821.dtb --mem-size=256MB --machine-type=VExpress_EMM64 --cpu-type=timing --external-memory-system=sst" }) bus = sst.Component("membus", "memHierarchy.Bus")