x86_generic.py (9380:e428871da248) x86_generic.py (9665:6dbdeee787cc)
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

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

53 the generic base systems.
54 """
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,
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

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

53 the generic base systems.
54 """
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 SimpleDDR3,
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,

--- 40 unchanged lines hidden ---
62 numCPUs=self.num_cpus,
63 mdesc=mdesc)
64 system.kernel = FSConfig.binary('x86_64-vmlinux-2.6.22.9')
65
66 self.init_system(system)
67 return system
68
69class LinuxX86FSSystem(LinuxX86SystemBuilder,

--- 40 unchanged lines hidden ---