diff options
author | Michael Neuling <mikey@neuling.org> | 2015-10-20 15:49:04 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-10-21 14:52:22 +1100 |
commit | 97a94d98f0e567f2244ab6794dde540250098fe5 (patch) | |
tree | 1760696943ffddaed7298411edb93cd49599f5f9 /external/mambo | |
parent | 0960832c0e9be9898a60e0ff0f801bd69a4265e2 (diff) | |
download | skiboot-97a94d98f0e567f2244ab6794dde540250098fe5.zip skiboot-97a94d98f0e567f2244ab6794dde540250098fe5.tar.gz skiboot-97a94d98f0e567f2244ab6794dde540250098fe5.tar.bz2 |
mambo: Auto start the simulator using SKIBOOT_AUTORUN
Automatically start the simulator using the SKIBOOT_AUTORUN
environment variable.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external/mambo')
-rw-r--r-- | external/mambo/skiboot.tcl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl index 2fed917..83d295b 100644 --- a/external/mambo/skiboot.tcl +++ b/external/mambo/skiboot.tcl @@ -203,3 +203,7 @@ for { set i 0 } { $i < $mconf(threads) } { incr i } { # Turbo mode & run mysim mode turbo + +if { [info exists env(SKIBOOT_AUTORUN)] } { + mysim go +} |