SConscript (10388:a26a20060ba3) | SConscript (10389:42d0d62ee057) |
---|---|
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 --- 29 unchanged lines hidden (view full) --- 38# Authors: Andreas Sandberg 39 40Import('*') 41 42if env['TARGET_ISA'] == 'null': 43 Return() 44 45SimObject('VirtIO.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 --- 29 unchanged lines hidden (view full) --- 38# Authors: Andreas Sandberg 39 40Import('*') 41 42if env['TARGET_ISA'] == 'null': 43 Return() 44 45SimObject('VirtIO.py') |
46SimObject('VirtIOConsole.py') |
|
46 47Source('base.cc') 48Source('pci.cc') | 47 48Source('base.cc') 49Source('pci.cc') |
50Source('console.cc') |
|
49 50DebugFlag('VIO', 'VirtIO base functionality') 51DebugFlag('VIOPci', 'VirtIO PCI transport') | 51 52DebugFlag('VIO', 'VirtIO base functionality') 53DebugFlag('VIOPci', 'VirtIO PCI transport') |
54DebugFlag('VIOConsole', 'VirtIO console device') |
|