SConscript (5612:1bd333953e49) SConscript (5614:2e7dbd0c4a2b)
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# Redistribution and use of this software in source and binary forms,
7# with or without modification, are permitted provided that the
8# following conditions are met:

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

54# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55#
56# Authors: Gabe Black
57
58Import('*')
59
60if env['TARGET_ISA'] == 'x86':
61 if env['FULL_SYSTEM']:
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
4# All rights reserved.
5#
6# Redistribution and use of this software in source and binary forms,
7# with or without modification, are permitted provided that the
8# following conditions are met:

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

54# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55#
56# Authors: Gabe Black
57
58Import('*')
59
60if env['TARGET_ISA'] == 'x86':
61 if env['FULL_SYSTEM']:
62 # The table generated by the bootloader using the BIOS and passed to
63 # the operating system which maps out physical memory.
62 SimObject('E820.py')
63 Source('e820.cc')
64
64 SimObject('E820.py')
65 Source('e820.cc')
66
67 # The DMI tables.
65 Source('smbios.cc')
68 Source('smbios.cc')