From: Gabe Black Date: Wed, 25 May 2011 08:32:07 +0000 (-0700) Subject: Name: Replace M5 with gem5 in a few places it's printed on startup. X-Git-Tag: stable_2012_02_02~297 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96138a79cddb6ea38800f4b097746cb8e1052a9e;p=gem5.git Name: Replace M5 with gem5 in a few places it's printed on startup. --- 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: