diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-11-01 04:01:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-11-01 04:01:14 -0700 |
commit | b6da5e2086b864149d65519333910d41351d4117 (patch) | |
tree | cd0997ce638eb87661c3ff5456d27259fb9a11a7 /src/arch/alpha/SConscript | |
parent | 1268e0df1f3d16d804b31005acf8067415771518 (diff) | |
download | gem5-b6da5e2086b864149d65519333910d41351d4117.tar.xz |
SE/FS: Get rid of uses of FULL_SYSTEM in Alpha.
Diffstat (limited to 'src/arch/alpha/SConscript')
-rw-r--r-- | src/arch/alpha/SConscript | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/src/arch/alpha/SConscript b/src/arch/alpha/SConscript index e0cbf019d..7e683364a 100644 --- a/src/arch/alpha/SConscript +++ b/src/arch/alpha/SConscript @@ -34,40 +34,33 @@ Import('*') if env['TARGET_ISA'] == 'alpha': Source('ev5.cc') Source('faults.cc') + Source('freebsd/system.cc') + Source('idle_event.cc') Source('interrupts.cc') Source('ipr.cc') Source('isa.cc') Source('kernel_stats.cc') + Source('linux/linux.cc') + Source('linux/process.cc') + Source('linux/system.cc') Source('osfpal.cc') Source('pagetable.cc') + Source('process.cc') Source('regredir.cc') Source('remote_gdb.cc') Source('stacktrace.cc') + Source('system.cc') Source('tlb.cc') + Source('tru64/process.cc') + Source('tru64/system.cc') + Source('tru64/tru64.cc') Source('utility.cc') Source('vtophys.cc') SimObject('AlphaInterrupts.py') + SimObject('AlphaSystem.py') SimObject('AlphaTLB.py') - if env['FULL_SYSTEM']: - SimObject('AlphaSystem.py') - - Source('idle_event.cc') - Source('system.cc') - - Source('freebsd/system.cc') - Source('linux/system.cc') - Source('tru64/system.cc') - - else: - Source('process.cc') - - Source('linux/linux.cc') - Source('linux/process.cc') - - Source('tru64/tru64.cc') - Source('tru64/process.cc') # Add in files generated by the ISA description. isa_desc_files = env.ISADesc('isa/main.isa') |