summaryrefslogtreecommitdiff
path: root/src/arch/x86/bios
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 03:50:42 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 03:50:42 -0700
commit9be6e082270aad53f8ba40bf66a91fcf176a45ab (patch)
treee77c1edecf3279284e353c364c0ea62530082da8 /src/arch/x86/bios
parentb4dab225fdb528569249b93f1ec7527219c35d54 (diff)
downloadgem5-9be6e082270aad53f8ba40bf66a91fcf176a45ab.tar.xz
X86: Add a couple comments to the bios SConscript
Diffstat (limited to 'src/arch/x86/bios')
-rw-r--r--src/arch/x86/bios/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/bios/SConscript b/src/arch/x86/bios/SConscript
index 904fab086..1ec717b11 100644
--- a/src/arch/x86/bios/SConscript
+++ b/src/arch/x86/bios/SConscript
@@ -59,7 +59,10 @@ Import('*')
if env['TARGET_ISA'] == 'x86':
if env['FULL_SYSTEM']:
+ # The table generated by the bootloader using the BIOS and passed to
+ # the operating system which maps out physical memory.
SimObject('E820.py')
Source('e820.cc')
+ # The DMI tables.
Source('smbios.cc')