SConscript revision 5615:1c4b9b1aa500
111731Sjason@lowepower.com# -*- mode:python -*- 211731Sjason@lowepower.com 311731Sjason@lowepower.com# Copyright (c) 2007-2008 The Hewlett-Packard Development Company 411731Sjason@lowepower.com# All rights reserved. 511731Sjason@lowepower.com# 612137Sar4jc@virginia.edu# Redistribution and use of this software in source and binary forms, 712137Sar4jc@virginia.edu# with or without modification, are permitted provided that the 812137Sar4jc@virginia.edu# following conditions are met: 912137Sar4jc@virginia.edu# 1011731Sjason@lowepower.com# The software must be used only for Non-Commercial Use which means any 1111731Sjason@lowepower.com# use which is NOT directed to receiving any direct monetary 1211731Sjason@lowepower.com# compensation for, or commercial advantage from such use. Illustrative 1311731Sjason@lowepower.com# examples of non-commercial use are academic research, personal study, 1411731Sjason@lowepower.com# teaching, education and corporate research & development. 1511731Sjason@lowepower.com# Illustrative examples of commercial use are distributing products for 1611731Sjason@lowepower.com# commercial advantage and providing services using the software for 1711731Sjason@lowepower.com# commercial advantage. 1811731Sjason@lowepower.com# 1911731Sjason@lowepower.com# If you wish to use this software or functionality therein that may be 2011731Sjason@lowepower.com# covered by patents for commercial use, please contact: 2111731Sjason@lowepower.com# Director of Intellectual Property Licensing 2211731Sjason@lowepower.com# Office of Strategy and Technology 2311731Sjason@lowepower.com# Hewlett-Packard Company 2411731Sjason@lowepower.com# 1501 Page Mill Road 2511731Sjason@lowepower.com# Palo Alto, California 94304 2611731Sjason@lowepower.com# 2711731Sjason@lowepower.com# Redistributions of source code must retain the above copyright notice, 2811731Sjason@lowepower.com# this list of conditions and the following disclaimer. Redistributions 2911731Sjason@lowepower.com# in binary form must reproduce the above copyright notice, this list of 3011731Sjason@lowepower.com# conditions and the following disclaimer in the documentation and/or 3111731Sjason@lowepower.com# other materials provided with the distribution. Neither the name of 3211731Sjason@lowepower.com# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its 3311731Sjason@lowepower.com# contributors may be used to endorse or promote products derived from 3411731Sjason@lowepower.com# this software without specific prior written permission. No right of 3511731Sjason@lowepower.com# sublicense is granted herewith. Derivatives of the software and 3611731Sjason@lowepower.com# output created using the software may be prepared, but only for 3711731Sjason@lowepower.com# Non-Commercial Uses. Derivatives of the software may be shared with 3811731Sjason@lowepower.com# others provided: (i) the others agree to abide by the list of 3911731Sjason@lowepower.com# conditions herein which includes the Non-Commercial Use restrictions; 4011731Sjason@lowepower.com# and (ii) such Derivatives of the software include the above copyright 4111731Sjason@lowepower.com# notice to acknowledge the contribution from this software where 4211731Sjason@lowepower.com# applicable, this list of conditions and the disclaimer below. 4311731Sjason@lowepower.com# 4411731Sjason@lowepower.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 4511731Sjason@lowepower.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 4611731Sjason@lowepower.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 4711731Sjason@lowepower.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 4811731Sjason@lowepower.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 4912137Sar4jc@virginia.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 50# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 51# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 52# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 53# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 54# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 55# 56# Authors: Gabe Black 57 58Import('*') 59 60if env['TARGET_ISA'] == 'x86': 61 if env['FULL_SYSTEM']: 62 # The table generated by the bootloader using the BIOS and passed to 63 # the operating system which maps out physical memory. 64 SimObject('E820.py') 65 Source('e820.cc') 66 67 # The DMI tables. 68 SimObject('SMBios.py') 69 Source('smbios.cc') 70