diff options
author | Palle Lyckegaard <palle@lyckegaard.dk> | 2015-11-03 12:17:55 -0600 |
---|---|---|
committer | Palle Lyckegaard <palle@lyckegaard.dk> | 2015-11-03 12:17:55 -0600 |
commit | 2cb491379b17fde81c91d0a4310e6f823d34d36b (patch) | |
tree | cd77d46df4390aa8fd2c4b528c6b801b53d3afec /configs/common/FSConfig.py | |
parent | e6a6d6445b7e4cf437096965588be1b3320de313 (diff) | |
download | gem5-2cb491379b17fde81c91d0a4310e6f823d34d36b.tar.xz |
sparc: add missing parameter to makeSparcSystem()
makeSparcSystem() in configs/common/FSConfig.py is missing the cmdLine
parameter Without the parameter the simulation fails to start. With the
parameter the simulation starts properly.
Diffstat (limited to 'configs/common/FSConfig.py')
-rw-r--r-- | configs/common/FSConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index 17f1f7641..7dd2e05fd 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -137,7 +137,7 @@ def makeLinuxAlphaSystem(mem_mode, mdesc=None, ruby=False, cmdline=None): return self -def makeSparcSystem(mem_mode, mdesc=None): +def makeSparcSystem(mem_mode, mdesc=None, cmdline=None): # Constants from iob.cc and uart8250.cc iob_man_addr = 0x9800000000 uart_pio_size = 8 |