Deleted Added
sdiff udiff text old ( 10389:42d0d62ee057 ) new ( 10390:28bc070b5a86 )
full compact
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')
48
49Source('base.cc')
50Source('pci.cc')
51Source('console.cc')
52Source('block.cc')
53
54DebugFlag('VIO', 'VirtIO base functionality')
55DebugFlag('VIOPci', 'VirtIO PCI transport')
56DebugFlag('VIOConsole', 'VirtIO console device')
57DebugFlag('VIOBlock', 'VirtIO block device')