Ah, yes I did. This actually reminds me that I need to fix how dma devices are connected within Ruby for x86_FS. I'll push a batch that fixes these issues soon.
Brad > -----Original Message----- > From: [email protected] [mailto:[email protected]] > On Behalf Of Nilay Vaish > Sent: Tuesday, February 08, 2011 9:54 AM > To: [email protected] > Subject: [m5-dev] Missing _ in ruby_fs.py > > Hi Brad, did you miss out on the '_' in _dma_devices? > > -- > Nilay > > > diff -r 6f5299ff8260 -r 00ad807ed2ca configs/example/ruby_fs.py > --- a/configs/example/ruby_fs.py Sun Feb 06 22:14:18 2011 -0800 > +++ b/configs/example/ruby_fs.py Sun Feb 06 22:14:18 2011 -0800 > @@ -109,12 +109,19 @@ > > CPUClass.clock = options.clock > > -system = makeLinuxAlphaRubySystem(test_mem_mode, bm[0]) > - > -system.ruby = Ruby.create_system(options, > - system, > - system.piobus, > - system._dma_devices) > +if buildEnv['TARGET_ISA'] == "alpha": > + system = makeLinuxAlphaRubySystem(test_mem_mode, bm[0]) > + system.ruby = Ruby.create_system(options, > + system, > + system.piobus, > + system.dma_devices) elif > +buildEnv['TARGET_ISA'] == "x86": > + system = makeLinuxX86System(test_mem_mode, options.num_cpus, > bm[0], > True) > + system.ruby = Ruby.create_system(options, > + system, > + system.piobus) > +else: > + fatal("incapable of building non-alpha or non-x86 full system!") > > system.cpu = [CPUClass(cpu_id=i) for i in xrange(options.num_cpus)] > _______________________________________________ > m5-dev mailing list > [email protected] > http://m5sim.org/mailman/listinfo/m5-dev _______________________________________________ m5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/m5-dev
