SE/FS: Make SE vs. FS mode a runtime parameter.

This commit is contained in:
Gabe Black
2012-01-28 07:24:34 -08:00
parent eab5c60286
commit ec20ee2f7c
47 changed files with 55 additions and 49 deletions

View File

@@ -552,8 +552,8 @@ def makeLinuxX86System(mem_mode, numCPUs = 1, mdesc = None, Ruby = False):
return self
def makeDualRoot(testSystem, driveSystem, dumpfile):
self = Root()
def makeDualRoot(full_system, testSystem, driveSystem, dumpfile):
self = Root(full_system = full_system)
self.testsys = testSystem
self.drivesys = driveSystem
self.etherlink = EtherLink()