summaryrefslogtreecommitdiff
path: root/configs/common/FSConfig.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 03:50:51 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 03:50:51 -0700
commitec0fb05d643323ae036156be76acd42c8275a2f4 (patch)
tree3ef01f529f108643ee9f94fe106741dace81d77a /configs/common/FSConfig.py
parent9be6e082270aad53f8ba40bf66a91fcf176a45ab (diff)
downloadgem5-ec0fb05d643323ae036156be76acd42c8275a2f4.tar.xz
X86: Turn SMBios structures into simobjects.
Diffstat (limited to 'configs/common/FSConfig.py')
-rw-r--r--configs/common/FSConfig.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py
index 8e2b0884c..21d4311d0 100644
--- a/configs/common/FSConfig.py
+++ b/configs/common/FSConfig.py
@@ -185,6 +185,10 @@ def makeX86System(mem_mode, mdesc = None, self = None):
self.intrctrl = IntrControl()
+ # Add in a Bios information structure.
+ structures = [X86SMBiosBiosInformation()]
+ self.smbios_table.structures = structures
+
def makeLinuxX86System(mem_mode, mdesc = None):
self = LinuxX86System()