SConscript revision 7087
12023SN/A# -*- mode:python -*-
22023SN/A
32023SN/A# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
42023SN/A# All rights reserved.
52023SN/A#
62023SN/A# The license below extends only to copyright in the software and shall
72023SN/A# not be construed as granting a license to any other intellectual
82023SN/A# property including but not limited to intellectual property relating
92023SN/A# to a hardware implementation of the functionality of the software
102023SN/A# licensed hereunder.  You may use the software subject to the license
112023SN/A# terms below provided that you ensure that this notice is replicated
122023SN/A# unmodified and in its entirety in all distributions of the software,
132023SN/A# modified or unmodified, in source code or in binary form.
142023SN/A#
152023SN/A# Redistribution and use in source and binary forms, with or without
162023SN/A# modification, are permitted provided that the following conditions are
172023SN/A# met: redistributions of source code must retain the above copyright
182023SN/A# notice, this list of conditions and the following disclaimer;
192023SN/A# redistributions in binary form must reproduce the above copyright
202023SN/A# notice, this list of conditions and the following disclaimer in the
212023SN/A# documentation and/or other materials provided with the distribution;
222023SN/A# neither the name of the copyright holders nor the names of its
232023SN/A# contributors may be used to endorse or promote products derived from
242023SN/A# this software without specific prior written permission.
252023SN/A#
262023SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
272023SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
282665Ssaidi@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
292665Ssaidi@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
302665Ssaidi@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
312023SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
324202Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
332023SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
344202Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
359022Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
364997Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
374202Sbinkertn@umich.edu#
388780Sgblack@eecs.umich.edu# Authors: Gabe Black
398780Sgblack@eecs.umich.edu
408745Sgblack@eecs.umich.eduImport('*')
414997Sgblack@eecs.umich.edu
426313Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'x86':
438777Sgblack@eecs.umich.edu    if env['FULL_SYSTEM']:
448780Sgblack@eecs.umich.edu        # The table generated by the bootloader using the BIOS and passed to
458780Sgblack@eecs.umich.edu        # the operating system which maps out physical memory.
468780Sgblack@eecs.umich.edu        SimObject('E820.py')
478777Sgblack@eecs.umich.edu        Source('e820.cc')
484997Sgblack@eecs.umich.edu
498780Sgblack@eecs.umich.edu        # The DMI tables.
506327Sgblack@eecs.umich.edu        SimObject('SMBios.py')
514202Sbinkertn@umich.edu	Source('smbios.cc')
528777Sgblack@eecs.umich.edu
538780Sgblack@eecs.umich.edu        # Intel Multiprocessor Specification Configuration Table
544997Sgblack@eecs.umich.edu        SimObject('IntelMP.py')
558780Sgblack@eecs.umich.edu        Source('intelmp.cc')
568780Sgblack@eecs.umich.edu
578780Sgblack@eecs.umich.edu        # ACPI system description tables
584826Ssaidi@eecs.umich.edu	SimObject('ACPI.py')
598755Sgblack@eecs.umich.edu        Source('acpi.cc')
602023SN/A