SConscript revision 5548
13546Sgblack@eecs.umich.edu# -*- mode:python -*- 23546Sgblack@eecs.umich.edu 33546Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan 43546Sgblack@eecs.umich.edu# All rights reserved. 53546Sgblack@eecs.umich.edu# 63546Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without 73546Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are 83546Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright 93546Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer; 103546Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright 113546Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the 123546Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution; 133546Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its 143546Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from 153546Sgblack@eecs.umich.edu# this software without specific prior written permission. 163546Sgblack@eecs.umich.edu# 173546Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 183546Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 193546Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 203546Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 213546Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 223546Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 233546Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 243546Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 253546Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 263546Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 273546Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 283546Sgblack@eecs.umich.edu# 293546Sgblack@eecs.umich.edu# Authors: Steve Reinhardt 303546Sgblack@eecs.umich.edu# Gabe Black 314202Sbinkertn@umich.edu 323546Sgblack@eecs.umich.eduImport('*') 334202Sbinkertn@umich.edu 344202Sbinkertn@umich.eduif env['FULL_SYSTEM']: 354202Sbinkertn@umich.edu SimObject('BadDevice.py') 363546Sgblack@eecs.umich.edu SimObject('Device.py') 374202Sbinkertn@umich.edu SimObject('DiskImage.py') 384202Sbinkertn@umich.edu SimObject('Ethernet.py') 394202Sbinkertn@umich.edu SimObject('Ide.py') 403546Sgblack@eecs.umich.edu SimObject('Pci.py') 414202Sbinkertn@umich.edu SimObject('Platform.py') 424202Sbinkertn@umich.edu SimObject('SimpleDisk.py') 434202Sbinkertn@umich.edu SimObject('Terminal.py') 444202Sbinkertn@umich.edu SimObject('Uart.py') 454202Sbinkertn@umich.edu 46 Source('baddev.cc') 47 Source('disk_image.cc') 48 Source('etherbus.cc') 49 Source('etherdevice.cc') 50 Source('etherdump.cc') 51 Source('etherint.cc') 52 Source('etherlink.cc') 53 Source('etherpkt.cc') 54 Source('ethertap.cc') 55 Source('i8254xGBe.cc') 56 Source('ide_ctrl.cc') 57 Source('ide_disk.cc') 58 Source('intel_8254_timer.cc') 59 Source('io_device.cc') 60 Source('isa_fake.cc') 61 Source('mc146818.cc') 62 Source('ns_gige.cc') 63 Source('pciconfigall.cc') 64 Source('pcidev.cc') 65 Source('pktfifo.cc') 66 Source('platform.cc') 67 Source('simple_disk.cc') 68 Source('sinic.cc') 69 Source('terminal.cc') 70 Source('uart.cc') 71 Source('uart8250.cc') 72 73 TraceFlag('DiskImageRead') 74 TraceFlag('DiskImageWrite') 75 TraceFlag('DMA') 76 TraceFlag('Ethernet') 77 TraceFlag('EthernetCksum') 78 TraceFlag('EthernetDMA') 79 TraceFlag('EthernetData') 80 TraceFlag('EthernetDesc') 81 TraceFlag('EthernetEEPROM') 82 TraceFlag('EthernetIntr') 83 TraceFlag('EthernetPIO') 84 TraceFlag('EthernetSM') 85 TraceFlag('IdeCtrl') 86 TraceFlag('IdeDisk') 87 TraceFlag('Intel8254Timer') 88 TraceFlag('IsaFake') 89 TraceFlag('MC146818') 90 TraceFlag('PCIDEV') 91 TraceFlag('PciConfigAll') 92 TraceFlag('SimpleDisk') 93 TraceFlag('SimpleDiskData') 94 TraceFlag('Terminal') 95 TraceFlag('TerminalVerbose') 96 TraceFlag('Uart') 97 98 CompoundFlag('DiskImageAll', [ 'DiskImageRead', 'DiskImageWrite' ]) 99 CompoundFlag('EthernetAll', [ 'Ethernet', 'EthernetPIO', 'EthernetDMA', 100 'EthernetData' , 'EthernetDesc', 'EthernetIntr', 'EthernetSM', 101 'EthernetCksum' ]) 102 CompoundFlag('EthernetNoData', [ 'Ethernet', 'EthernetPIO', 'EthernetDesc', 103 'EthernetIntr', 'EthernetSM', 'EthernetCksum' ]) 104 CompoundFlag('IdeAll', [ 'IdeCtrl', 'IdeDisk' ]) 105 106