diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-05-25 01:32:07 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-05-25 01:32:07 -0700 |
commit | 96138a79cddb6ea38800f4b097746cb8e1052a9e (patch) | |
tree | dac365effeb0368ca1085010270bde8125437604 /src | |
parent | 1c23bc100f2cdb786f62e6e524de989612b6d819 (diff) | |
download | gem5-96138a79cddb6ea38800f4b097746cb8e1052a9e.tar.xz |
Name: Replace M5 with gem5 in a few places it's printed on startup.
Diffstat (limited to 'src')
-rw-r--r-- | src/python/m5/main.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index 85a49afcb..0b330d000 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -34,10 +34,10 @@ import sys __all__ = [ 'options', 'arguments', 'main' ] -usage="%prog [m5 options] script.py [script options]" +usage="%prog [gem5 options] script.py [script options]" version="%prog 2.0" brief_copyright=''' -Copyright (c) 2001-2008 +Copyright (c) 2001-2011 The Regents of The University of Michigan All Rights Reserved ''' @@ -130,7 +130,7 @@ def parse_options(): return options,arguments def interact(scope): - banner = "M5 Interactive Console" + banner = "gem5 Interactive Console" sys.argv = [] try: from IPython.Shell import IPShellEmbed @@ -263,14 +263,15 @@ def main(*args): verbose = options.verbose - options.quiet if options.verbose >= 0: - print "M5 Simulator System" + print "gem5 Simulator System" print brief_copyright print - print "M5 compiled %s" % defines.compileDate; + print "gem5 compiled %s" % defines.compileDate; - print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X") - print "M5 executing on %s" % socket.gethostname() + print "gem5 started %s" % \ + datetime.datetime.now().strftime("%b %e %Y %X") + print "gem5 executing on %s" % socket.gethostname() print "command line:", for argv in sys.argv: |