configs: Fix ruby_fs.py cache line size
authorJoel Hestness <jthestness@gmail.com>
Wed, 18 Sep 2013 00:39:11 +0000 (19:39 -0500)
committerJoel Hestness <jthestness@gmail.com>
Wed, 18 Sep 2013 00:39:11 +0000 (19:39 -0500)
Recent changes added setting of system-wide cache line size and these settings
occur in the top-level configs (se.py and fs.py). This setting also needs to
take place in ruby_fs.py. This change sets the cache line size as appropriate.

configs/example/ruby_fs.py

index ee7a6b33a3e5b55867c7d342620210861b07c16c..3c3986bdd4f45596a350fd12ceda3cd5f08eb5cb 100644 (file)
@@ -89,6 +89,7 @@ elif buildEnv['TARGET_ISA'] == "x86":
     Simulation.setWorkCountOptions(system, options)
 else:
     fatal("incapable of building non-alpha or non-x86 full system!")
+system.cache_line_size = options.cacheline_size
 
 # Create a top-level voltage domain and clock domain
 system.voltage_domain = VoltageDomain(voltage = options.sys_voltage)