diff -r 73116cbeacba -r 24105b11f542 configs/example/ruby_direct_test.py --- a/configs/example/ruby_direct_test.py Thu Jan 26 16:44:43 2012 -0500 +++ b/configs/example/ruby_direct_test.py Fri Jan 27 17:50:42 2012 +0000 @@ -107,6 +107,9 @@ # system.tester.cpuPort = ruby_port.port +# Connect the system port for loading of binaries etc +system.system_port = system.ruby._sys_port_proxy.port + # ----------------------- # run simulation # ----------------------- diff -r 73116cbeacba -r 24105b11f542 configs/example/ruby_mem_test.py --- a/configs/example/ruby_mem_test.py Thu Jan 26 16:44:43 2012 -0500 +++ b/configs/example/ruby_mem_test.py Fri Jan 27 17:50:42 2012 +0000 @@ -158,6 +158,9 @@ # dma.functional = system.funcmem.port +# Connect the system port for loading of binaries etc +system.system_port = system.ruby._sys_port_proxy.port + # ----------------------- # run simulation # ----------------------- diff -r 73116cbeacba -r 24105b11f542 configs/example/ruby_network_test.py --- a/configs/example/ruby_network_test.py Thu Jan 26 16:44:43 2012 -0500 +++ b/configs/example/ruby_network_test.py Fri Jan 27 17:50:42 2012 +0000 @@ -117,6 +117,10 @@ i += 1 + +# Connect the system port for loading of binaries etc +system.system_port = system.ruby._sys_port_proxy.port + # ----------------------- # run simulation # ----------------------- diff -r 73116cbeacba -r 24105b11f542 configs/example/ruby_random_test.py --- a/configs/example/ruby_random_test.py Thu Jan 26 16:44:43 2012 -0500 +++ b/configs/example/ruby_random_test.py Fri Jan 27 17:50:42 2012 +0000 @@ -127,6 +127,10 @@ # ruby_port.access_phys_mem = False + +# Connect the system port for loading of binaries etc +system.system_port = system.ruby._sys_port_proxy.port + # ----------------------- # run simulation # ----------------------- diff -r 73116cbeacba -r 24105b11f542 tests/configs/o3-timing-mp-ruby.py --- a/tests/configs/o3-timing-mp-ruby.py Thu Jan 26 16:44:43 2012 -0500 +++ b/tests/configs/o3-timing-mp-ruby.py Fri Jan 27 17:50:42 2012 +0000 @@ -46,6 +46,8 @@ # connect memory to membus system.physmem.port = system.membus.port +# Connect the system port for loading of binaries etc +system.system_port = system.membus.port # ----------------------- # run simulation diff -r 73116cbeacba -r 24105b11f542 tests/configs/o3-timing-ruby.py --- a/tests/configs/o3-timing-ruby.py Thu Jan 26 16:44:43 2012 -0500 +++ b/tests/configs/o3-timing-ruby.py Fri Jan 27 17:50:42 2012 +0000 @@ -43,4 +43,7 @@ system.physmem.port = system.membus.port cpu.connectAllPorts(system.membus) +# Connect the system port for loading of binaries etc +system.system_port = system.membus.port + root = Root(system = system) diff -r 73116cbeacba -r 24105b11f542 tests/configs/simple-atomic-mp-ruby.py --- a/tests/configs/simple-atomic-mp-ruby.py Thu Jan 26 16:44:43 2012 -0500 +++ b/tests/configs/simple-atomic-mp-ruby.py Fri Jan 27 17:50:42 2012 +0000 @@ -47,6 +47,8 @@ # connect memory to membus system.physmem.port = system.membus.port +# Connect the system port for loading of binaries etc +system.system_port = system.membus.port # ----------------------- # run simulation