summaryrefslogtreecommitdiff
path: root/src/arch/x86/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-01-23 15:28:54 -0500
committerGabe Black <gblack@eecs.umich.edu>2008-01-23 15:28:54 -0500
commitca313e23033cd3f2ef827edf9a442ed1ae3d087f (patch)
treeb9afb1ebc98a9fa3eb79f9e789dfbf6694e9769d /src/arch/x86/SConscript
parent423bbe6499ee4a40cec40aa7e68d5af18bef6d59 (diff)
downloadgem5-ca313e23033cd3f2ef827edf9a442ed1ae3d087f.tar.xz
X86: Put an SMBios/DMI table in memory.
This is basically just the header right now, but there's an untested mechanism in place to fill out the table and make sure everything is updated correctly. --HG-- extra : convert_revision : c1610c0dfa211b7e0d091a04133695d84f500a1c
Diffstat (limited to 'src/arch/x86/SConscript')
-rw-r--r--src/arch/x86/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/x86/SConscript b/src/arch/x86/SConscript
index 1ce06040f..1b589268d 100644
--- a/src/arch/x86/SConscript
+++ b/src/arch/x86/SConscript
@@ -28,7 +28,7 @@
#
# Authors: Gabe Black
-# Copyright (c) 2007 The Hewlett-Packard Development Company
+# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
# All rights reserved.
#
# Redistribution and use of this software in source and binary forms,
@@ -114,6 +114,7 @@ if env['TARGET_ISA'] == 'x86':
# Full-system sources
Source('linux/system.cc')
Source('pagetable_walker.cc')
+ Source('smbios.cc')
Source('system.cc')
Source('stacktrace.cc')
Source('vtophys.cc')