updated readme to reflect linux/scons changes
authorAli Saidi <saidi@eecs.umich.edu>
Wed, 28 Jul 2004 21:56:36 +0000 (17:56 -0400)
committerAli Saidi <saidi@eecs.umich.edu>
Wed, 28 Jul 2004 21:56:36 +0000 (17:56 -0400)
Put correct date in copyright headers based on bk changesets

LICENSE:
    Updated copyright on license file
README:
    Updaded readme to reflect shift to scons and linux support
cpu/trace/reader/ibm_reader.cc:
cpu/trace/reader/ibm_reader.hh:
cpu/trace/reader/itx_reader.cc:
cpu/trace/reader/itx_reader.hh:
cpu/trace/reader/m5_reader.cc:
cpu/trace/reader/m5_reader.hh:
cpu/trace/reader/mem_trace_reader.cc:
cpu/trace/reader/mem_trace_reader.hh:
cpu/trace/trace_cpu.cc:
cpu/trace/trace_cpu.hh:
    updated copyright (only changeset in 2004)
kern/kernel_stats.cc:
kern/kernel_stats.hh:
    updated copyright

--HG--
extra : convert_revision : 726aed4b38ff4d230c63a570df83c63075b3c76f

12 files changed:
LICENSE
README
cpu/trace/reader/ibm_reader.cc
cpu/trace/reader/ibm_reader.hh
cpu/trace/reader/itx_reader.cc
cpu/trace/reader/itx_reader.hh
cpu/trace/reader/m5_reader.cc
cpu/trace/reader/m5_reader.hh
cpu/trace/reader/mem_trace_reader.cc
cpu/trace/reader/mem_trace_reader.hh
cpu/trace/trace_cpu.cc
cpu/trace/trace_cpu.hh

diff --git a/LICENSE b/LICENSE
index 8ecb9557881a480c9853fca3353c96970f418b7a..3c9fd6627456a8df8886d5728182e50c79644abc 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2000-2003 The Regents of The University of Michigan
+Copyright (c) 2000-2004 The Regents of The University of Michigan
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/README b/README
index f5651ec00609474cff902dac450234b9e475b067..fe5b99f238c53860c0984821d509400b93cd3bd7 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,3 @@
-
 This is release m5_1.0_beta1 of the M5 simulator.
 
 This file contains brief "getting started" information and release
@@ -13,13 +12,23 @@ distribution.  The archive you've unpacked has three subdirectories:
  - m5: the simulator itself
  - m5-test: regression tests and scripts to run them
  - ext: less-common external packages needed to build m5
-   (currently just "ply")
+   (currently ply and libelf)
+
+M5 is a capable, full-system simulator that current supports both Linux
+2.4/2.6 and the proprietary Compaq/HP Tru64 version of Unix. We are able 
+to distribute Linux bootdisks, but we are unable to distribute bootable
+disk images of Tru64 Unix. If you have a Tru64 license and are interested 
+in obtaining disk images, contact us at m5-dev@eecs.umich.edu.
+
+WHAT'S NEEDED
+-------------
+-GCC(3.X)
+-Python(2.2.2+)
 
-Although M5 is capable of full-system simulation, the only OS it
-currently supports is the proprietary Compaq/HP Tru64 version of Unix.
-We are thus unable to distribute bootable disk images freely.  If you
-have a Tru64 license and are interested in obtaining disk images,
-contact us at m5-dev@eecs.umich.edu.
+WHAT'S RECOMMENDED
+------------------
+-MySQL (for statistics complex statistics storage/retrieval)
+-Python-MysqlDB (for statistics analysis) 
 
 GETTING STARTED
 ---------------
@@ -28,24 +37,23 @@ The following steps will build and test the simulator.  The variable
 "$top" refers to the top directory where you've unpacked the files,
 i.e., the one containing the m5, m5-test, and ext directories.
 
-cd $top/m5/setup
-./setup ALPHA          # set up build/ALPHA directory
-cd $top/m5/build/ALPHA
-make m5.opt            # use "-j N" if you've got an MP system
-# wait for build...
+There are three different build targets and three optimizations in each level:
+Target:
+-------
+ALPHA  - Syscall emulation simulation
+KERNEL - Linux full system simulation
+KERNEL_TLASER - Tru64 Unix full system simulation
+
+Optimization:
+-------------
+m5.debug - debug version of the code with tracing and without optimization
+m5.opt   - optimized version of code with tracing
+m5.fast  - optimized version of the code without tracing and asserts
+
+cd $top/m5/build
+scons TARGET/OPTLEVL  # e.g. KERNEL/m5.opt, use -j N if you have a MP system
 cd $top/m5-test
 ./do-tests.pl -B ALPHA # test what you just built
+./do-tests.pl -B KERNEL        # test what you just built
 # wait for tests to run...
 # should end with "finished do-tests successfully!"
-
-If you run into errors regarding m5/arch/alpha/decoder.cc, just
-"touch" that file to update its timestamp.  This file is generated
-from a compact ISA description using a program written in Python.  If
-you have Python 2.2.2 or later installed on your system, you should be
-able to generate it yourself, but if you don't have Python (or have an
-older version), you may run in to trouble.  Since we've shipped a
-working copy of decoder.cc, it's not necessary to have Python to build
-M5 (unless you start modifying the ISA decription).  Unfortunately,
-sometimes make gets confused and tries to do so anyway.  The "touch"
-should convince make to stop trying.
-
index 439931dba79a4eb5462c9b9783afeef4661e4954..7ca32fe21ca92c04347a0bc4f025fb5c0b3e7253 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 0f14da24dd516f2d047818e271428c15f395e6ea..f7e3ae14914069330c85858143ba713dbf1d1048 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 54bbbc4ea2c0ea7798cc55590e7c12e6b246bf37..593d383ec0c33cce0d397f854da8d8eca8321f09 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index ff74062eae9c02f767376bafe8379aa60b9c95a6..0e08d5db5e63c7da27c8e7032730b79b86c2b330 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index d081f0bc0e10cfd08fdf76b5bc5b3b473188570b..c5b807824ff9063603df592b88f930464328d022 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index d78787461144e402fd8b1435d909c969107d21e0..296c99ccfcfd8116cdeb291f864965696c3fd148 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index c6fc53f5115d22d47e610f41a0373013010cd0a7..441e72b80ed4ccd297978996cc8e6eb79370a6d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 5da99a498bc9ca252765eaa15ef5db736deeeaf9..6b6f804af68125309c015d5f3e31ab81c027ebf7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003-2004 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 6122fc78666cfe851ebe8a5d3f6c303a4badfd38..94f311d4b7ea4e36489928f04f3304b86267ac3f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 13a204f4e5c94a164b6b2895cccd0ce8c4c3c9d4..6f3ef50a66136c8969d86c09e8ad621118a0c727 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003 The Regents of The University of Michigan
+ * Copyright (c) 2004 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without