diff options
Diffstat (limited to 'configs/test')
-rw-r--r-- | configs/test/fs.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configs/test/fs.py b/configs/test/fs.py index 004edda79..741ebfe54 100644 --- a/configs/test/fs.py +++ b/configs/test/fs.py @@ -36,13 +36,14 @@ else: mem_mode = 'atomic' if options.dual: - root = DualRoot( - MyLinuxAlphaSystem(cpu, mem_mode, linux_image), - MyLinuxAlphaSystem(cpu2, mem_mode, linux_image)) + root = makeDualRoot( + makeLinuxAlphaSystem(cpu, mem_mode, linux_image), + makeLinuxAlphaSystem(cpu2, mem_mode, linux_image)) root.client.readfile = script('netperf-stream-nt-client.rcS') root.server.readfile = script('netperf-server.rcS') else: - root = TsunamiRoot(clock = '1THz', system = MyLinuxAlphaSystem(cpu, mem_mode, linux_image)) + root = Root(clock = '1THz', + system = makeLinuxAlphaSystem(cpu, mem_mode, linux_image)) m5.instantiate(root) |