x86_generic.py (9826:014ff1fbff6d) x86_generic.py (10003:459491344fcf)
1# Copyright (c) 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

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

55 def __init__(self):
56 pass
57
58 def create_system(self):
59 mdesc = SysConfig(disk = 'linux-x86.img')
60 system = FSConfig.makeLinuxX86System(self.mem_mode,
61 numCPUs=self.num_cpus,
62 mdesc=mdesc)
1# Copyright (c) 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

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

55 def __init__(self):
56 pass
57
58 def create_system(self):
59 mdesc = SysConfig(disk = 'linux-x86.img')
60 system = FSConfig.makeLinuxX86System(self.mem_mode,
61 numCPUs=self.num_cpus,
62 mdesc=mdesc)
63 system.kernel = FSConfig.binary('x86_64-vmlinux-2.6.22.9')
64
65 self.init_system(system)
66 return system
67
68class LinuxX86FSSystem(LinuxX86SystemBuilder,
69 BaseFSSystem):
70 """Basic X86 full system builder."""
71

--- 45 unchanged lines hidden ---
63
64 self.init_system(system)
65 return system
66
67class LinuxX86FSSystem(LinuxX86SystemBuilder,
68 BaseFSSystem):
69 """Basic X86 full system builder."""
70

--- 45 unchanged lines hidden ---