diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 02:30:55 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-30 02:30:55 -0700 |
commit | 0c81db77f218d414e13f4721f19b1f7ac5305592 (patch) | |
tree | dce1fdbd020647895540d91b930b4bd16d3f44b2 /src/sim/System.py | |
parent | 1d8822a3647244d2386568f688203a48bda7b49e (diff) | |
download | gem5-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.py | 20 |
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"); |