diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-06-12 00:58:36 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-06-12 00:58:36 -0400 |
commit | bceaa257a38d62c91317cecc78f4dba46654eb93 (patch) | |
tree | 2db79f7f87f798e4d28553c72e8dd9d1185f3026 /src/arch/x86/SConscript | |
parent | 4f4ff17578846018e06b0b9b047df96a8346efd9 (diff) | |
download | gem5-bceaa257a38d62c91317cecc78f4dba46654eb93.tar.xz |
X86: Make the e820 table manually or automatically configurable from python.
Diffstat (limited to 'src/arch/x86/SConscript')
-rw-r--r-- | src/arch/x86/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/x86/SConscript b/src/arch/x86/SConscript index 09967b0d3..184bb4809 100644 --- a/src/arch/x86/SConscript +++ b/src/arch/x86/SConscript @@ -110,8 +110,10 @@ if env['TARGET_ISA'] == 'x86': if env['FULL_SYSTEM']: SimObject('X86System.py') + SimObject('bios/E820.py') # Full-system sources + Source('bios/e820.cc') Source('linux/system.cc') Source('pagetable_walker.cc') Source('smbios.cc') |