FSConfig.py (8714:cd48e2802644) FSConfig.py (8801:1a84c6a81299)
1# Copyright (c) 2010-2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 538 unchanged lines hidden (view full) ---

547 ]
548
549 # Command line
550 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
551 'root=/dev/hda1'
552 return self
553
554
1# Copyright (c) 2010-2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 538 unchanged lines hidden (view full) ---

547 ]
548
549 # Command line
550 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
551 'root=/dev/hda1'
552 return self
553
554
555def makeDualRoot(testSystem, driveSystem, dumpfile):
556 self = Root()
555def makeDualRoot(full_system, testSystem, driveSystem, dumpfile):
556 self = Root(full_system = full_system)
557 self.testsys = testSystem
558 self.drivesys = driveSystem
559 self.etherlink = EtherLink()
560 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
561 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
562
563 if hasattr(testSystem, 'realview'):
564 self.etherlink.int0 = Parent.testsys.realview.ethernet.interface

--- 82 unchanged lines hidden ---
557 self.testsys = testSystem
558 self.drivesys = driveSystem
559 self.etherlink = EtherLink()
560 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
561 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
562
563 if hasattr(testSystem, 'realview'):
564 self.etherlink.int0 = Parent.testsys.realview.ethernet.interface

--- 82 unchanged lines hidden ---