diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 03:50:51 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 03:50:51 -0700 |
commit | ec0fb05d643323ae036156be76acd42c8275a2f4 (patch) | |
tree | 3ef01f529f108643ee9f94fe106741dace81d77a /configs/common | |
parent | 9be6e082270aad53f8ba40bf66a91fcf176a45ab (diff) | |
download | gem5-ec0fb05d643323ae036156be76acd42c8275a2f4.tar.xz |
X86: Turn SMBios structures into simobjects.
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/FSConfig.py | 4 |
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() |