SConscript (7799:5d0f62927d75) SConscript (8768:314eb1e2fa94)
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

35# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37#
38# Authors: Gabe Black
39
40Import('*')
41
42if env['TARGET_ISA'] == 'x86':
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

35# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37#
38# Authors: Gabe Black
39
40Import('*')
41
42if env['TARGET_ISA'] == 'x86':
43 if env['FULL_SYSTEM']:
44 # The table generated by the bootloader using the BIOS and passed to
45 # the operating system which maps out physical memory.
46 SimObject('E820.py')
47 Source('e820.cc')
43 # The table generated by the bootloader using the BIOS and passed to
44 # the operating system which maps out physical memory.
45 SimObject('E820.py')
46 Source('e820.cc')
48
47
49 # The DMI tables.
50 SimObject('SMBios.py')
51 Source('smbios.cc')
48 # The DMI tables.
49 SimObject('SMBios.py')
50 Source('smbios.cc')
52
51
53 # Intel Multiprocessor Specification Configuration Table
54 SimObject('IntelMP.py')
55 Source('intelmp.cc')
52 # Intel Multiprocessor Specification Configuration Table
53 SimObject('IntelMP.py')
54 Source('intelmp.cc')
56
55
57 # ACPI system description tables
58 SimObject('ACPI.py')
59 Source('acpi.cc')
56 # ACPI system description tables
57 SimObject('ACPI.py')
58 Source('acpi.cc')