summaryrefslogtreecommitdiff
path: root/src/arch/x86/X86System.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-12-01 23:09:56 -0800
committerGabe Black <gblack@eecs.umich.edu>2007-12-01 23:09:56 -0800
commit42ae409746adb2d64961af236516e8e57f52e731 (patch)
tree62fc06bc419db73cddd3addf6a3399ea375f9006 /src/arch/x86/X86System.py
parente7fc5c42f3a8e1d1a67301ced7c76765f776a683 (diff)
downloadgem5-42ae409746adb2d64961af236516e8e57f52e731.tar.xz
X86: Move startup code to the system object to initialize a Linux system.
--HG-- extra : convert_revision : a4796c79f41aa8b8f38bf2f628bee8f1b3af64be
Diffstat (limited to 'src/arch/x86/X86System.py')
-rw-r--r--src/arch/x86/X86System.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/X86System.py b/src/arch/x86/X86System.py
index 329c72aaf..acee5ac36 100644
--- a/src/arch/x86/X86System.py
+++ b/src/arch/x86/X86System.py
@@ -58,3 +58,7 @@ from System import System
class X86System(System):
type = 'X86System'
+
+class LinuxX86System(X86System):
+ type = 'LinuxX86System'
+ command_line = Param.String("", "the kernel command line")