SConscript revision 8755
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 322023SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 332023SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 342023SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 352023SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 362023SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 372023SN/A# 382023SN/A# Authors: Gabe Black 392023SN/A 402023SN/AImport('*') 412023SN/A 422023SN/Aif env['TARGET_ISA'] == 'x86': 432023SN/A if env['FULL_SYSTEM']: 442023SN/A # The table generated by the bootloader using the BIOS and passed to 452023SN/A # the operating system which maps out physical memory. 462023SN/A SimObject('E820.py') 472023SN/A Source('e820.cc') 482023SN/A 492152SN/A # The DMI tables. 502152SN/A SimObject('SMBios.py') 513592Sgblack@eecs.umich.edu Source('smbios.cc') 523592Sgblack@eecs.umich.edu 533586Sgblack@eecs.umich.edu # Intel Multiprocessor Specification Configuration Table 543592Sgblack@eecs.umich.edu SimObject('IntelMP.py') 553960Sgblack@eecs.umich.edu Source('intelmp.cc') 562023SN/A 572023SN/A # ACPI system description tables 582023SN/A SimObject('ACPI.py') 592152SN/A Source('acpi.cc') 602152SN/A