diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-02-14 21:36:37 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-02-14 21:36:37 -0800 |
commit | 989138970e3512aa9c1b37810ba64a742c00543e (patch) | |
tree | 948473f5801b0cf56c26eca7e3822865afe89593 /src/python/m5 | |
parent | 343e94a257baa94575adf0d0def18ffe8da0c4f8 (diff) | |
download | gem5-989138970e3512aa9c1b37810ba64a742c00543e.tar.xz |
Info: Clean up some info files.
Get rid of RELEASE_NOTES since we no longer do releases, update some of the
information in README, and update the date in LICENSE.
Diffstat (limited to 'src/python/m5')
-rw-r--r-- | src/python/m5/main.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/python/m5/main.py b/src/python/m5/main.py index cd139ccb3..23a012166 100644 --- a/src/python/m5/main.py +++ b/src/python/m5/main.py @@ -61,8 +61,6 @@ add_option('-C', "--copyright", action="store_true", default=False, help="Show full copyright information") add_option('-R', "--readme", action="store_true", default=False, help="Show the readme") -add_option('-N', "--release-notes", action="store_true", default=False, - help="Show the release notes") # Options for configuring the base simulator add_option('-d', "--outdir", metavar="DIR", default="m5out", @@ -207,13 +205,6 @@ def main(): print info.README print - if options.release_notes: - done = True - print 'Release Notes:' - print - print info.RELEASE_NOTES - print - if options.trace_help: done = True check_tracing() |