SConscript revision 5192
14202SN/A# -*- mode:python -*- 24202SN/A 34202SN/A# Copyright (c) 2006 The Regents of The University of Michigan 44202SN/A# All rights reserved. 54202SN/A# 64202SN/A# Redistribution and use in source and binary forms, with or without 74202SN/A# modification, are permitted provided that the following conditions are 84202SN/A# met: redistributions of source code must retain the above copyright 94202SN/A# notice, this list of conditions and the following disclaimer; 104202SN/A# redistributions in binary form must reproduce the above copyright 114202SN/A# notice, this list of conditions and the following disclaimer in the 124202SN/A# documentation and/or other materials provided with the distribution; 134202SN/A# neither the name of the copyright holders nor the names of its 144202SN/A# contributors may be used to endorse or promote products derived from 154202SN/A# this software without specific prior written permission. 164202SN/A# 174202SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 184202SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 194202SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 204202SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 214202SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 224202SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 234202SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 244202SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 254202SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 264202SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 274202SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 284202SN/A# 294202SN/A# Authors: Steve Reinhardt 304202SN/A# Gabe Black 314202SN/A 324202SN/AImport('*') 336629SN/A 346629SN/Aif env['FULL_SYSTEM']: 354486SN/A SimObject('BadDevice.py') 366629SN/A SimObject('Device.py') 375192SN/A SimObject('DiskImage.py') 388335Snate@binkert.org SimObject('Ethernet.py') 39 SimObject('Ide.py') 40 SimObject('Pci.py') 41 SimObject('Platform.py') 42 SimObject('SimConsole.py') 43 SimObject('SimpleDisk.py') 44 SimObject('Uart.py') 45 46 Source('baddev.cc') 47 Source('disk_image.cc') 48 Source('etherbus.cc') 49 Source('etherdump.cc') 50 Source('etherint.cc') 51 Source('etherlink.cc') 52 Source('etherpkt.cc') 53 Source('ethertap.cc') 54 Source('i8254xGBe.cc') 55 Source('ide_ctrl.cc') 56 Source('ide_disk.cc') 57 Source('io_device.cc') 58 Source('isa_fake.cc') 59 Source('ns_gige.cc') 60 Source('pciconfigall.cc') 61 Source('pcidev.cc') 62 Source('pktfifo.cc') 63 Source('platform.cc') 64 Source('simconsole.cc') 65 Source('simple_disk.cc') 66 Source('sinic.cc') 67 Source('uart.cc') 68 Source('uart8250.cc') 69 70 TraceFlag('Console') 71 TraceFlag('ConsoleVerbose') 72 TraceFlag('DiskImageRead') 73 TraceFlag('DiskImageWrite') 74 TraceFlag('DMA') 75 TraceFlag('Ethernet') 76 TraceFlag('EthernetCksum') 77 TraceFlag('EthernetDMA') 78 TraceFlag('EthernetData') 79 TraceFlag('EthernetDesc') 80 TraceFlag('EthernetEEPROM') 81 TraceFlag('EthernetIntr') 82 TraceFlag('EthernetPIO') 83 TraceFlag('EthernetSM') 84 TraceFlag('IdeCtrl') 85 TraceFlag('IdeDisk') 86 TraceFlag('IsaFake') 87 TraceFlag('PCIDEV') 88 TraceFlag('PciConfigAll') 89 TraceFlag('SimpleDisk') 90 TraceFlag('SimpleDiskData') 91 TraceFlag('Uart') 92 93 CompoundFlag('DiskImageAll', [ 'DiskImageRead', 'DiskImageWrite' ]) 94 CompoundFlag('EthernetAll', [ 'Ethernet', 'EthernetPIO', 'EthernetDMA', 95 'EthernetData' , 'EthernetDesc', 'EthernetIntr', 'EthernetSM', 96 'EthernetCksum' ]) 97 CompoundFlag('EthernetNoData', [ 'Ethernet', 'EthernetPIO', 'EthernetDesc', 98 'EthernetIntr', 'EthernetSM', 'EthernetCksum' ]) 99 CompoundFlag('IdeAll', [ 'IdeCtrl', 'IdeDisk' ]) 100 101