SConscript (10390:28bc070b5a86) | SConscript (10391:4a501e0f7540) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2014 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 31 unchanged lines hidden (view full) --- 40Import('*') 41 42if env['TARGET_ISA'] == 'null': 43 Return() 44 45SimObject('VirtIO.py') 46SimObject('VirtIOConsole.py') 47SimObject('VirtIOBlock.py') | 1# -*- mode:python -*- 2 3# Copyright (c) 2014 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 31 unchanged lines hidden (view full) --- 40Import('*') 41 42if env['TARGET_ISA'] == 'null': 43 Return() 44 45SimObject('VirtIO.py') 46SimObject('VirtIOConsole.py') 47SimObject('VirtIOBlock.py') |
48SimObject('VirtIO9P.py') |
|
48 49Source('base.cc') 50Source('pci.cc') 51Source('console.cc') 52Source('block.cc') | 49 50Source('base.cc') 51Source('pci.cc') 52Source('console.cc') 53Source('block.cc') |
54Source('fs9p.cc') |
|
53 54DebugFlag('VIO', 'VirtIO base functionality') 55DebugFlag('VIOPci', 'VirtIO PCI transport') 56DebugFlag('VIOConsole', 'VirtIO console device') 57DebugFlag('VIOBlock', 'VirtIO block device') | 55 56DebugFlag('VIO', 'VirtIO base functionality') 57DebugFlag('VIOPci', 'VirtIO PCI transport') 58DebugFlag('VIOConsole', 'VirtIO console device') 59DebugFlag('VIOBlock', 'VirtIO block device') |
60DebugFlag('VIO9P', 'General 9p over VirtIO debugging') 61DebugFlag('VIO9PData', 'Dump data in VirtIO 9p connections') |
|