diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 03:50:42 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 03:50:42 -0700 |
commit | 9be6e082270aad53f8ba40bf66a91fcf176a45ab (patch) | |
tree | e77c1edecf3279284e353c364c0ea62530082da8 | |
parent | b4dab225fdb528569249b93f1ec7527219c35d54 (diff) | |
download | gem5-9be6e082270aad53f8ba40bf66a91fcf176a45ab.tar.xz |
X86: Add a couple comments to the bios SConscript
-rw-r--r-- | src/arch/x86/bios/SConscript | 3 |
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') |