SConscript (10389:42d0d62ee057) SConscript (10390:28bc070b5a86)
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

--- 30 unchanged lines hidden (view full) ---

39
40Import('*')
41
42if env['TARGET_ISA'] == 'null':
43 Return()
44
45SimObject('VirtIO.py')
46SimObject('VirtIOConsole.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

--- 30 unchanged lines hidden (view full) ---

39
40Import('*')
41
42if env['TARGET_ISA'] == 'null':
43 Return()
44
45SimObject('VirtIO.py')
46SimObject('VirtIOConsole.py')
47SimObject('VirtIOBlock.py')
47
48Source('base.cc')
49Source('pci.cc')
50Source('console.cc')
48
49Source('base.cc')
50Source('pci.cc')
51Source('console.cc')
52Source('block.cc')
51
52DebugFlag('VIO', 'VirtIO base functionality')
53DebugFlag('VIOPci', 'VirtIO PCI transport')
54DebugFlag('VIOConsole', 'VirtIO console device')
53
54DebugFlag('VIO', 'VirtIO base functionality')
55DebugFlag('VIOPci', 'VirtIO PCI transport')
56DebugFlag('VIOConsole', 'VirtIO console device')
57DebugFlag('VIOBlock', 'VirtIO block device')