summaryrefslogtreecommitdiff
path: root/src/sim/System.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-10-30 02:30:55 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-10-30 02:30:55 -0700
commit0c81db77f218d414e13f4721f19b1f7ac5305592 (patch)
treedce1fdbd020647895540d91b930b4bd16d3f44b2 /src/sim/System.py
parent1d8822a3647244d2386568f688203a48bda7b49e (diff)
downloadgem5-0c81db77f218d414e13f4721f19b1f7ac5305592.tar.xz
SE/FS: Make the system object more consistent between SE and FS.
Diffstat (limited to 'src/sim/System.py')
-rw-r--r--src/sim/System.py20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/sim/System.py b/src/sim/System.py
index a6897d834..948be7e77 100644
--- a/src/sim/System.py
+++ b/src/sim/System.py
@@ -62,14 +62,12 @@ class System(SimObject):
work_cpus_ckpt_count = Param.Counter(0,
"create checkpoint when active cpu count value is reached")
- if buildEnv['FULL_SYSTEM']:
- abstract = True
- boot_cpu_frequency = Param.Frequency(Self.cpu[0].clock.frequency,
- "boot processor frequency")
- init_param = Param.UInt64(0, "numerical value to pass into simulator")
- boot_osflags = Param.String("a", "boot flags to pass to the kernel")
- kernel = Param.String("", "file that contains the kernel code")
- readfile = Param.String("", "file to read startup script from")
- symbolfile = Param.String("", "file to get the symbols from")
- load_addr_mask = Param.UInt64(0xffffffffff,
- "Address to mask loading binaries with");
+ boot_cpu_frequency = Param.Frequency(Self.cpu[0].clock.frequency,
+ "boot processor frequency")
+ init_param = Param.UInt64(0, "numerical value to pass into simulator")
+ boot_osflags = Param.String("a", "boot flags to pass to the kernel")
+ kernel = Param.String("", "file that contains the kernel code")
+ readfile = Param.String("", "file to read startup script from")
+ symbolfile = Param.String("", "file to get the symbols from")
+ load_addr_mask = Param.UInt64(0xffffffffff,
+ "Address to mask loading binaries with");