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.
This commit is contained in:
parent
e6a6d6445b
commit
2cb491379b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue