SConscript revision 5016
12689Sktlim@umich.edu# -*- mode:python -*- 210282Sdam.sunwoo@arm.com 38666SPrakash.Ramrakhyani@arm.com# Copyright (c) 2006 The Regents of The University of Michigan 48666SPrakash.Ramrakhyani@arm.com# All rights reserved. 58666SPrakash.Ramrakhyani@arm.com# 68666SPrakash.Ramrakhyani@arm.com# Redistribution and use in source and binary forms, with or without 78666SPrakash.Ramrakhyani@arm.com# modification, are permitted provided that the following conditions are 88666SPrakash.Ramrakhyani@arm.com# met: redistributions of source code must retain the above copyright 98666SPrakash.Ramrakhyani@arm.com# notice, this list of conditions and the following disclaimer; 108666SPrakash.Ramrakhyani@arm.com# redistributions in binary form must reproduce the above copyright 118666SPrakash.Ramrakhyani@arm.com# notice, this list of conditions and the following disclaimer in the 128666SPrakash.Ramrakhyani@arm.com# documentation and/or other materials provided with the distribution; 138666SPrakash.Ramrakhyani@arm.com# neither the name of the copyright holders nor the names of its 142689Sktlim@umich.edu# contributors may be used to endorse or promote products derived from 157897Shestness@cs.utexas.edu# this software without specific prior written permission. 162689Sktlim@umich.edu# 172689Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182689Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192689Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202689Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212689Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222689Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232689Sktlim@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242689Sktlim@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252689Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262689Sktlim@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272689Sktlim@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282689Sktlim@umich.edu# 292689Sktlim@umich.edu# Authors: Steve Reinhardt 302689Sktlim@umich.edu# Gabe Black 312689Sktlim@umich.edu 322689Sktlim@umich.eduImport('*') 332689Sktlim@umich.edu 342689Sktlim@umich.eduif env['FULL_SYSTEM']: 352689Sktlim@umich.edu SimObject('BadDevice.py') 362689Sktlim@umich.edu SimObject('Device.py') 372689Sktlim@umich.edu SimObject('DiskImage.py') 382689Sktlim@umich.edu SimObject('Ethernet.py') 392689Sktlim@umich.edu SimObject('Ide.py') 402689Sktlim@umich.edu SimObject('Pci.py') 412689Sktlim@umich.edu SimObject('Platform.py') 422689Sktlim@umich.edu SimObject('SimConsole.py') 432689Sktlim@umich.edu SimObject('SimpleDisk.py') 442689Sktlim@umich.edu SimObject('Uart.py') 457897Shestness@cs.utexas.edu 462689Sktlim@umich.edu Source('baddev.cc') 472689Sktlim@umich.edu Source('disk_image.cc') 482521SN/A Source('etherbus.cc') 493960Sgblack@eecs.umich.edu Source('etherdump.cc') 504194Ssaidi@eecs.umich.edu Source('etherint.cc') 511070SN/A Source('etherlink.cc') 521070SN/A Source('etherpkt.cc') 539142Ssteve.reinhardt@amd.com Source('ethertap.cc') 542521SN/A Source('i8254xGBe.cc') 556658Snate@binkert.org Source('ide_ctrl.cc') 568229Snate@binkert.org Source('ide_disk.cc') 578232Snate@binkert.org Source('io_device.cc') 588666SPrakash.Ramrakhyani@arm.com Source('isa_fake.cc') 598769Sgblack@eecs.umich.edu Source('ns_gige.cc') 609293Sandreas.hansson@arm.com Source('pciconfigall.cc') 612522SN/A Source('pcidev.cc') 628769Sgblack@eecs.umich.edu Source('pktfifo.cc') 632037SN/A Source('platform.cc') 648229Snate@binkert.org Source('simconsole.cc') 658769Sgblack@eecs.umich.edu Source('simple_disk.cc') 6656SN/A Source('sinic.cc') 676658Snate@binkert.org Source('uart.cc') 682SN/A Source('uart8250.cc') 692107SN/A