From aab7397324aaaf612d4cb11300980d4b8e19e237 Mon Sep 17 00:00:00 2001 From: gloh Date: Thu, 1 Dec 2011 10:08:52 -0800 Subject: [PATCH] config: command line option to specify ruby output file --HG-- extra : rebase_source : df2237b2ce01b1a3e1d6f112a62deadde4d92420 --- configs/ruby/Ruby.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index e83e7f23f..1562c531c 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -58,13 +58,16 @@ def define_options(parser): parser.add_option("--random_seed", type="int", default=1234, help="Used for seeding the random number generator") + parser.add_option("--ruby_stats", type="string", default="ruby.stats") + protocol = buildEnv['PROTOCOL'] exec "import %s" % protocol eval("%s.define_options(parser)" % protocol) def create_system(options, system, piobus = None, dma_devices = []): - system.ruby = RubySystem(clock = options.clock) + system.ruby = RubySystem(clock = options.clock, + stats_filename = options.ruby_stats) ruby = system.ruby protocol = buildEnv['PROTOCOL'] -- 2.30.2