scons: rename TraceFlags to DebugFlags
This commit is contained in:
@@ -76,31 +76,31 @@ if env['FULL_SYSTEM']:
|
||||
Source('uart.cc')
|
||||
Source('uart8250.cc')
|
||||
|
||||
TraceFlag('DiskImageRead')
|
||||
TraceFlag('DiskImageWrite')
|
||||
TraceFlag('DMA')
|
||||
TraceFlag('DMACopyEngine')
|
||||
TraceFlag('Ethernet')
|
||||
TraceFlag('EthernetCksum')
|
||||
TraceFlag('EthernetDMA')
|
||||
TraceFlag('EthernetData')
|
||||
TraceFlag('EthernetDesc')
|
||||
TraceFlag('EthernetEEPROM')
|
||||
TraceFlag('EthernetIntr')
|
||||
TraceFlag('EthernetPIO')
|
||||
TraceFlag('EthernetSM')
|
||||
TraceFlag('IdeCtrl')
|
||||
TraceFlag('IdeDisk')
|
||||
TraceFlag('Intel8254Timer')
|
||||
TraceFlag('IsaFake')
|
||||
TraceFlag('MC146818')
|
||||
TraceFlag('PCIDEV')
|
||||
TraceFlag('PciConfigAll')
|
||||
TraceFlag('SimpleDisk')
|
||||
TraceFlag('SimpleDiskData')
|
||||
TraceFlag('Terminal')
|
||||
TraceFlag('TerminalVerbose')
|
||||
TraceFlag('Uart')
|
||||
DebugFlag('DiskImageRead')
|
||||
DebugFlag('DiskImageWrite')
|
||||
DebugFlag('DMA')
|
||||
DebugFlag('DMACopyEngine')
|
||||
DebugFlag('Ethernet')
|
||||
DebugFlag('EthernetCksum')
|
||||
DebugFlag('EthernetDMA')
|
||||
DebugFlag('EthernetData')
|
||||
DebugFlag('EthernetDesc')
|
||||
DebugFlag('EthernetEEPROM')
|
||||
DebugFlag('EthernetIntr')
|
||||
DebugFlag('EthernetPIO')
|
||||
DebugFlag('EthernetSM')
|
||||
DebugFlag('IdeCtrl')
|
||||
DebugFlag('IdeDisk')
|
||||
DebugFlag('Intel8254Timer')
|
||||
DebugFlag('IsaFake')
|
||||
DebugFlag('MC146818')
|
||||
DebugFlag('PCIDEV')
|
||||
DebugFlag('PciConfigAll')
|
||||
DebugFlag('SimpleDisk')
|
||||
DebugFlag('SimpleDiskData')
|
||||
DebugFlag('Terminal')
|
||||
DebugFlag('TerminalVerbose')
|
||||
DebugFlag('Uart')
|
||||
|
||||
CompoundFlag('DiskImageAll', [ 'DiskImageRead', 'DiskImageWrite' ])
|
||||
CompoundFlag('EthernetAll', [ 'Ethernet', 'EthernetPIO', 'EthernetDMA',
|
||||
|
||||
@@ -41,5 +41,5 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'alpha':
|
||||
Source('tsunami_io.cc')
|
||||
Source('tsunami_pchip.cc')
|
||||
|
||||
TraceFlag('AlphaBackdoor')
|
||||
TraceFlag('Tsunami')
|
||||
DebugFlag('AlphaBackdoor')
|
||||
DebugFlag('Tsunami')
|
||||
|
||||
@@ -53,7 +53,7 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'arm':
|
||||
Source('rv_ctrl.cc')
|
||||
Source('realview.cc')
|
||||
|
||||
TraceFlag('AMBA')
|
||||
TraceFlag('PL111')
|
||||
TraceFlag('Pl050')
|
||||
TraceFlag('GIC')
|
||||
DebugFlag('AMBA')
|
||||
DebugFlag('PL111')
|
||||
DebugFlag('Pl050')
|
||||
DebugFlag('GIC')
|
||||
|
||||
@@ -34,7 +34,7 @@ Import('*')
|
||||
if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'mips':
|
||||
SimObject('Malta.py')
|
||||
|
||||
TraceFlag('Malta')
|
||||
DebugFlag('Malta')
|
||||
|
||||
Source('malta.cc')
|
||||
Source('malta_cchip.cc')
|
||||
|
||||
@@ -39,4 +39,4 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'sparc':
|
||||
Source('t1000.cc')
|
||||
Source('mm_disk.cc')
|
||||
|
||||
TraceFlag('Iob')
|
||||
DebugFlag('Iob')
|
||||
|
||||
@@ -39,32 +39,32 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
|
||||
|
||||
SimObject('Cmos.py')
|
||||
Source('cmos.cc')
|
||||
TraceFlag('CMOS', 'Accesses to CMOS devices')
|
||||
DebugFlag('CMOS', 'Accesses to CMOS devices')
|
||||
|
||||
SimObject('I8259.py')
|
||||
Source('i8259.cc')
|
||||
TraceFlag('I8259', 'Accesses to the I8259 PIC devices')
|
||||
DebugFlag('I8259', 'Accesses to the I8259 PIC devices')
|
||||
|
||||
SimObject('I8254.py')
|
||||
Source('i8254.cc')
|
||||
TraceFlag('I8254', 'Interrupts from the I8254 timer');
|
||||
DebugFlag('I8254', 'Interrupts from the I8254 timer');
|
||||
|
||||
SimObject('I8237.py')
|
||||
Source('i8237.cc')
|
||||
TraceFlag('I8237', 'The I8237 dma controller');
|
||||
DebugFlag('I8237', 'The I8237 dma controller');
|
||||
|
||||
SimObject('I8042.py')
|
||||
Source('i8042.cc')
|
||||
TraceFlag('I8042', 'The I8042 keyboard controller');
|
||||
DebugFlag('I8042', 'The I8042 keyboard controller');
|
||||
|
||||
SimObject('PcSpeaker.py')
|
||||
Source('speaker.cc')
|
||||
TraceFlag('PcSpeaker')
|
||||
DebugFlag('PcSpeaker')
|
||||
|
||||
SimObject('I82094AA.py')
|
||||
Source('i82094aa.cc')
|
||||
TraceFlag('I82094AA')
|
||||
DebugFlag('I82094AA')
|
||||
|
||||
SimObject('X86IntPin.py')
|
||||
Source('intdev.cc')
|
||||
TraceFlag('IntDev')
|
||||
DebugFlag('IntDev')
|
||||
|
||||
Reference in New Issue
Block a user