diff --git a/sm5/CHANGELOG b/sm5/CHANGELOG
index 7e5bb5c0ce53812b1da859bbe51600da4b75409b..15247298b7a513e3482c7c6f7dcd32f7130a983c 100644
--- a/sm5/CHANGELOG
+++ b/sm5/CHANGELOG
@@ -1,6 +1,6 @@
 CHANGELOG for smartmontools
 
-$Id: CHANGELOG,v 1.3 2002/10/11 09:20:32 ballen4705 Exp $
+$Id: CHANGELOG,v 1.4 2002/10/14 15:25:55 ballen4705 Exp $
 
 Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 
@@ -13,3 +13,7 @@ You should have received a copy of the GNU General Public License (for
 example COPYING); if not, write to the Free Software Foundation, Inc., 675
 Mass Ave, Cambridge, MA 02139, USA.
 
+This code was originally developed as a Senior Thesis by Michael Cornwell
+at the Concurrent Systems Laboratory (now part of the Storage Systems
+Research Center), Jack Baskin School of Engineering, University of
+California, Santa Cruz. http://ssrc.soe.ucsc.edu/
diff --git a/sm5/Makefile b/sm5/Makefile
index a2048ddd38b67a655e5a89272618b446e85b8541..baf563bb3a4942879e8d7871094379f168635145 100644
--- a/sm5/Makefile
+++ b/sm5/Makefile
@@ -1,6 +1,6 @@
 # Makefile for smartmontools
 #
-# $Id: Makefile,v 1.15 2002/10/14 09:17:36 ballen4705 Exp $
+# $Id: Makefile,v 1.16 2002/10/14 15:25:58 ballen4705 Exp $
 #
 # Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 # 
@@ -12,6 +12,11 @@
 # You should have received a copy of the GNU General Public License (for
 # example COPYING); if not, write to the Free Software Foundation, Inc., 675
 # Mass Ave, Cambridge, MA 02139, USA.
+#
+# This code was originally developed as a Senior Thesis by Michael Cornwell
+# at the Concurrent Systems Laboratory (now part of the Storage Systems
+# Research Center), Jack Baskin School of Engineering, University of
+# California, Santa Cruz. http://ssrc.soe.ucsc.edu/
 
 CC	= gcc
 # CFLAGS = -fsigned-char -Wall -g 
diff --git a/sm5/README b/sm5/README
index 9c6f85edefa43f245c271ded0bf98c0fba2245d3..1541db470da1d2d398062f4b2757e1b21dc92a8a 100644
--- a/sm5/README
+++ b/sm5/README
@@ -2,7 +2,6 @@
 SMARTMONTOOLS - SMART utility toolset for Linux
 ===============================================
 
-
 == HOME ==
 The home for smartmontools is located at:
 http://smartmontools.sourceforge.net
@@ -10,7 +9,6 @@ Please see this web site
 for updates, documentation, and for submitting patches and bug
 reports.
 
-
 == COPYING ==
 Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 
@@ -23,6 +21,11 @@ You should have received a copy of the GNU General Public License (for
 example COPYING); if not, write to the Free Software Foundation, Inc., 675
 Mass Ave, Cambridge, MA 02139, USA.
 
+== CREDITS ==
+This code was originally developed as a Senior Thesis by Michael Cornwell
+at the Concurrent Systems Laboratory (now part of the Storage Systems
+Research Center), Jack Baskin School of Engineering, University of
+California, Santa Cruz. http://ssrc.soe.ucsc.edu/
 
 == OVERVIEW ==
 SMARTMONTOOLS contains utilities that control and monitor storage
@@ -180,4 +183,4 @@ Fax: (408) 867-2115
 E-Mail: 250-1752@mcimail.com.
 
 
-$Id: README,v 1.5 2002/10/12 11:10:01 ballen4705 Exp $
+$Id: README,v 1.6 2002/10/14 15:26:00 ballen4705 Exp $
diff --git a/sm5/TODO b/sm5/TODO
index c8527c2c5e5e4bc7bc39b05e587a19857daac2d4..ef2cbae931ba72b4a40b0b733bed7f199a9690d7 100644
--- a/sm5/TODO
+++ b/sm5/TODO
@@ -2,7 +2,7 @@ TODO list for smartmontools:
 
 Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 
-$Id: TODO,v 1.5 2002/10/12 11:10:01 ballen4705 Exp $
+$Id: TODO,v 1.6 2002/10/14 15:26:02 ballen4705 Exp $
 
 This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the Free
@@ -13,6 +13,11 @@ You should have received a copy of the GNU General Public License (for
 example COPYING); if not, write to the Free Software Foundation, Inc., 675
 Mass Ave, Cambridge, MA 02139, USA.
 
+This code was originally developed as a Senior Thesis by Michael Cornwell
+at the Concurrent Systems Laboratory (now part of the Storage Systems
+Research Center), Jack Baskin School of Engineering, University of
+California, Santa Cruz. http://ssrc.soe.ucsc.edu/.
+
 
 Testing
 -------
diff --git a/sm5/VERSION b/sm5/VERSION
index 7f8f011eb73d6043d2e6db9d2c101195ae2801f2..45a4fb75db864000d01701c0f7a51864bd4daabf 100644
--- a/sm5/VERSION
+++ b/sm5/VERSION
@@ -1 +1 @@
-7
+8
diff --git a/sm5/atacmds.c b/sm5/atacmds.c
index c9078886d103e44aa8b484f13161eea41805c87d..f7051591635aad274e28f85cdd9607feda642464 100644
--- a/sm5/atacmds.c
+++ b/sm5/atacmds.c
@@ -1,4 +1,4 @@
-//  $Id: atacmds.c,v 1.4 2002/10/13 13:10:56 ballen4705 Exp $
+//  $Id: atacmds.c,v 1.5 2002/10/14 15:26:05 ballen4705 Exp $
 /*
  * atacmds.c
  *
@@ -14,6 +14,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ * 
  */
 
 
diff --git a/sm5/atacmds.cpp b/sm5/atacmds.cpp
index 8b209009792b28f766305e41e6ce2e4cf127c09e..241cf8ee86e7bea75a96ba2c4fa4a0877f172644 100644
--- a/sm5/atacmds.cpp
+++ b/sm5/atacmds.cpp
@@ -1,4 +1,4 @@
-//  $Id: atacmds.cpp,v 1.4 2002/10/13 13:10:56 ballen4705 Exp $
+//  $Id: atacmds.cpp,v 1.5 2002/10/14 15:26:05 ballen4705 Exp $
 /*
  * atacmds.c
  *
@@ -14,6 +14,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ * 
  */
 
 
diff --git a/sm5/atacmds.h b/sm5/atacmds.h
index ace3ccf89bc45497b9e9686754c30603e8a7bf36..b2335d7f05db086cf5318e8e57975d213b254074 100644
--- a/sm5/atacmds.h
+++ b/sm5/atacmds.h
@@ -1,4 +1,4 @@
-//  $Id: atacmds.h,v 1.10 2002/10/13 13:10:56 ballen4705 Exp $
+//  $Id: atacmds.h,v 1.11 2002/10/14 15:26:08 ballen4705 Exp $
 /*
  * atacmds.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #ifndef _ATACMDS_H_
diff --git a/sm5/ataprint.c b/sm5/ataprint.c
index 5c64fc0b04d83ba8a7fe13e5abaa4c469cf4cbd9..41820149ef5f93e6414a54720507ab3176ed906d 100644
--- a/sm5/ataprint.c
+++ b/sm5/ataprint.c
@@ -1,4 +1,4 @@
-//  $Id: ataprint.c,v 1.8 2002/10/13 13:10:56 ballen4705 Exp $
+//  $Id: ataprint.c,v 1.9 2002/10/14 15:26:10 ballen4705 Exp $
 /*
  * ataprint.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include "ataprint.h"
diff --git a/sm5/ataprint.cpp b/sm5/ataprint.cpp
index be9528222cc21e95eb290858ffc1278af8ea6d47..0cc661f35e61290d75908cc77c9a9666980c2bfb 100644
--- a/sm5/ataprint.cpp
+++ b/sm5/ataprint.cpp
@@ -1,4 +1,4 @@
-//  $Id: ataprint.cpp,v 1.8 2002/10/13 13:10:56 ballen4705 Exp $
+//  $Id: ataprint.cpp,v 1.9 2002/10/14 15:26:10 ballen4705 Exp $
 /*
  * ataprint.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include "ataprint.h"
diff --git a/sm5/ataprint.h b/sm5/ataprint.h
index 259f565b6887541201389488f2fabdf838f62bac..0f66dbc792c8eaead3ee26e6003ec07b01202510 100644
--- a/sm5/ataprint.h
+++ b/sm5/ataprint.h
@@ -1,4 +1,4 @@
-//  $Id: ataprint.h,v 1.3 2002/10/11 09:20:32 ballen4705 Exp $
+//  $Id: ataprint.h,v 1.4 2002/10/14 15:26:15 ballen4705 Exp $
 
 /*
  * ataprint.c
@@ -14,6 +14,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #ifndef _SMART_PRINT_H_
diff --git a/sm5/extern.h b/sm5/extern.h
index 3d955fde5bb2bf3c18a531f74bdc47817bd00b55..13c0c8cd733f7c699b91da9a72f407fac90191f4 100644
--- a/sm5/extern.h
+++ b/sm5/extern.h
@@ -1,4 +1,4 @@
-//  $Id: extern.h,v 1.3 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: extern.h,v 1.4 2002/10/14 15:26:16 ballen4705 Exp $
 /*
  * extern.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #ifndef _EXTERN_H_
diff --git a/sm5/scsicmds.c b/sm5/scsicmds.c
index ae02f29a7ab3081a5bd187261bfda783dd6aded7..52ce62f7ebeba49c8b179f7a54cd2eb3e8b63d81 100644
--- a/sm5/scsicmds.c
+++ b/sm5/scsicmds.c
@@ -1,4 +1,4 @@
-//  $Id: scsicmds.c,v 1.5 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: scsicmds.c,v 1.6 2002/10/14 15:26:18 ballen4705 Exp $
 
 /*
  * scsicmds.c
@@ -14,6 +14,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include <stdio.h>
diff --git a/sm5/scsicmds.cpp b/sm5/scsicmds.cpp
index 5f572a4c9a3abdad39d9338662159b0fda0ecf64..83953c754feb2b8bf0082c2a407531e924d0cd35 100644
--- a/sm5/scsicmds.cpp
+++ b/sm5/scsicmds.cpp
@@ -1,4 +1,4 @@
-//  $Id: scsicmds.cpp,v 1.5 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: scsicmds.cpp,v 1.6 2002/10/14 15:26:18 ballen4705 Exp $
 
 /*
  * scsicmds.c
@@ -14,6 +14,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include <stdio.h>
diff --git a/sm5/scsicmds.h b/sm5/scsicmds.h
index bd91eaad2a4fc472593e96596b9806d8ad0ec00f..5d1ae01ed5411d2e64fbabfb276822de732d9bb2 100644
--- a/sm5/scsicmds.h
+++ b/sm5/scsicmds.h
@@ -1,4 +1,4 @@
-//  $Id: scsicmds.h,v 1.3 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: scsicmds.h,v 1.4 2002/10/14 15:26:21 ballen4705 Exp $
 /*
  * scsicmds.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
diff --git a/sm5/scsiprint.c b/sm5/scsiprint.c
index 47a0501e49e322b65122dbbfd102b601ce87caba..cc76767470a769d2b825504ae4df2b3d91b5b0a6 100644
--- a/sm5/scsiprint.c
+++ b/sm5/scsiprint.c
@@ -1,4 +1,4 @@
-//  $Id: scsiprint.c,v 1.4 2002/10/11 09:20:32 ballen4705 Exp $
+//  $Id: scsiprint.c,v 1.5 2002/10/14 15:26:23 ballen4705 Exp $
 /*
  * scsiprint.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
diff --git a/sm5/scsiprint.cpp b/sm5/scsiprint.cpp
index 849647a8bfde953382818086c5f00619d4b47cc1..cab7e2383ab4b31fc0691b341d756bdac37ddbb1 100644
--- a/sm5/scsiprint.cpp
+++ b/sm5/scsiprint.cpp
@@ -1,4 +1,4 @@
-//  $Id: scsiprint.cpp,v 1.4 2002/10/11 09:20:32 ballen4705 Exp $
+//  $Id: scsiprint.cpp,v 1.5 2002/10/14 15:26:23 ballen4705 Exp $
 /*
  * scsiprint.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
diff --git a/sm5/scsiprint.h b/sm5/scsiprint.h
index 210487cd50c82557cb33840bb7ebe8b8f35658c8..3d6d8441f93c3ea0b3655ff0d323c8cdc959f3d2 100644
--- a/sm5/scsiprint.h
+++ b/sm5/scsiprint.h
@@ -1,4 +1,4 @@
-//  $Id: scsiprint.h,v 1.3 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: scsiprint.h,v 1.4 2002/10/14 15:26:24 ballen4705 Exp $
 /*
  * scsiprint.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
diff --git a/sm5/smartctl.8 b/sm5/smartctl.8
index 3372a0a6adb527226a147d6aae1886b00957b573..d47caa6bf0c69e151fff6a114455aa3da24776df 100644
--- a/sm5/smartctl.8
+++ b/sm5/smartctl.8
@@ -1,6 +1,6 @@
 \# Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 \#
-\# $Id: smartctl.8,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $
+\# $Id: smartctl.8,v 1.8 2002/10/14 15:26:25 ballen4705 Exp $
 \# 
 \# This program is free software; you can redistribute it and/or modify it
 \# under the terms of the GNU General Public License as published by the Free
@@ -10,7 +10,12 @@
 \# You should have received a copy of the GNU General Public License (for
 \# example COPYING); if not, write to the Free Software Foundation, Inc., 675
 \# Mass Ave, Cambridge, MA 02139, USA.
-.TH SMARTCTL 8  "$Date: 2002/10/12 11:10:01 $" "smartmontools-5.0"
+\#
+\# This code was originally developed as a Senior Thesis by Michael Cornwell
+\# at the Concurrent Systems Laboratory (now part of the Storage Systems
+\# Research Center), Jack Baskin School of Engineering, University of
+\# California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+.TH SMARTCTL 8  "$Date: 2002/10/14 15:26:25 $" "smartmontools-5.0"
 .SH NAME
 smartctl \- S.M.A.R.T. control utility 
 .SH SYNOPSIS
@@ -180,7 +185,8 @@ Offline: Runs S.M.A.R.T. Immediate offline Test.  This immediately
 starts the test describe above.  This command can be given during
 normal system operation.
 .TP
-S Selftest: Runs S.M.A.R.T. Short Self Test (usually under ten
+S 
+Selftest: Runs S.M.A.R.T. Short Self Test (usually under ten
 minutes).  This is a test in a different category than the automatic
 offline tests.  The 'Self' tests check the electrical and mechanical
 performance as well as the read performance of the disk.  Their
@@ -249,9 +255,13 @@ University of Wisconsin - Milwaukee Physics Department
 .PP
 .SH CREDITS
 .fi
-This code was derived from the smartsuite package, written by
-Michael Cornwell, and from the previous ucsc smartsuite package.  It
-extends these to cover ATA-5 disks.
+This code was derived from the smartsuite package, written by Michael
+Cornwell, and from the previous ucsc smartsuite package.  It extends
+these to cover ATA-5 disks.  This code was originally developed as a
+Senior Thesis by Michael Cornwell at the Concurrent Systems Laboratory
+(now part of the Storage Systems Research Center), Jack Baskin School
+of Engineering, University of California, Santa
+Cruz. http://ssrc.soe.ucsc.edu/.
 .SH
 HOME PAGE FOR SMARTMONTOOLS: 
 .fi
@@ -309,4 +319,4 @@ Please let us know if there is an on\-line source for this document.
 
 .SH
 CVS ID OF THIS PAGE:
-$Id: smartctl.8,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $
+$Id: smartctl.8,v 1.8 2002/10/14 15:26:25 ballen4705 Exp $
diff --git a/sm5/smartctl.c b/sm5/smartctl.c
index f590ae683fb7b5ab503764c18231974151bb9a58..34a6a09e735938129c2c57d843bbc2a4cf4a088e 100644
--- a/sm5/smartctl.c
+++ b/sm5/smartctl.c
@@ -1,4 +1,4 @@
-//  $Id: smartctl.c,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: smartctl.c,v 1.8 2002/10/14 15:26:28 ballen4705 Exp $
 /*
  * smartctl.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
@@ -215,7 +221,7 @@ int main (int argc, char **argv){
     printf("is free software, and you are welcome to redistribute it\n");
     printf("under the terms of the GNU General Public License Version 2.\n");
     printf("See http://www.gnu.org for further details.\n\n");
-    printf("CVS version ID %s\n","$Id: smartctl.c,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $");
+    printf("CVS version ID %s\n","$Id: smartctl.c,v 1.8 2002/10/14 15:26:28 ballen4705 Exp $");
     exit(0);
  }
 
diff --git a/sm5/smartctl.cpp b/sm5/smartctl.cpp
index 65c5600dbb9b31baa430f2198f123d2d842fd110..e2e46ebd988bcd64f66a5bad818b76fc0613302e 100644
--- a/sm5/smartctl.cpp
+++ b/sm5/smartctl.cpp
@@ -1,4 +1,4 @@
-//  $Id: smartctl.cpp,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: smartctl.cpp,v 1.8 2002/10/14 15:26:28 ballen4705 Exp $
 /*
  * smartctl.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 
@@ -215,7 +221,7 @@ int main (int argc, char **argv){
     printf("is free software, and you are welcome to redistribute it\n");
     printf("under the terms of the GNU General Public License Version 2.\n");
     printf("See http://www.gnu.org for further details.\n\n");
-    printf("CVS version ID %s\n","$Id: smartctl.cpp,v 1.7 2002/10/12 11:10:01 ballen4705 Exp $");
+    printf("CVS version ID %s\n","$Id: smartctl.cpp,v 1.8 2002/10/14 15:26:28 ballen4705 Exp $");
     exit(0);
  }
 
diff --git a/sm5/smartctl.h b/sm5/smartctl.h
index 19ceed3823a6b7da3ff04f556dc41642275e5045..8e3590f2f2a08bd78b28e4bafd9e0776dd773d0e 100644
--- a/sm5/smartctl.h
+++ b/sm5/smartctl.h
@@ -1,4 +1,4 @@
-//  $Id: smartctl.h,v 1.4 2002/10/12 11:10:01 ballen4705 Exp $
+//  $Id: smartctl.h,v 1.5 2002/10/14 15:26:29 ballen4705 Exp $
 /*
  * smartctl.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #ifndef __SMARTCTL_H_
diff --git a/sm5/smartd.8 b/sm5/smartd.8
index 045c8fb37d77984875317e1d39143fc51b43c71c..5fa159ac9c3102fa1438898900e72d3ff1948898 100644
--- a/sm5/smartd.8
+++ b/sm5/smartd.8
@@ -8,7 +8,12 @@
 \# You should have received a copy of the GNU General Public License (for
 \# example COPYING); if not, write to the Free Software Foundation, Inc., 675
 \# Mass Ave, Cambridge, MA 02139, USA.
-.TH SMARTD 8  "$Date: 2002/10/11 09:20:32 $" "smartmontools-5.0"
+\# 
+\# This code was originally developed as a Senior Thesis by Michael Cornwell
+\# at the Concurrent Systems Laboratory (now part of the Storage Systems
+\# Research Center), Jack Baskin School of Engineering, University of
+\# California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+.TH SMARTD 8  "$Date: 2002/10/14 15:26:30 $" "smartmontools-5.0"
 .SH NAME
 smartd \- S.M.A.R.T. Daemon
 .SH SYNOPSIS
@@ -109,9 +114,13 @@ University of Wisconsin - Milwaukee Physics Department
 .PP
 .SH CREDITS
 .fi
-This code was derived from the smartsuite package, written by
-Michael Cornwell, and from the previous ucsc smartsuite package.  It
-extends these to cover ATA-5 disks.
+This code was derived from the smartsuite package, written by Michael
+Cornwell, and from the previous ucsc smartsuite package. It extends
+these to cover ATA-5 disks. This code was originally developed as a
+Senior Thesis by Michael Cornwell at the Concurrent Systems Laboratory
+(now part of the Storage Systems Research Center), Jack Baskin School
+of Engineering, University of California, Santa
+Cruz. http://ssrc.soe.ucsc.edu/.
 .SH
 HOME PAGE FOR SMARTMONTOOLS: 
 .fi
@@ -169,4 +178,4 @@ Please let us know if there is an on\-line source for this document.
 
 .SH
 CVS ID OF THIS PAGE:
-$Id: smartd.8,v 1.6 2002/10/11 09:20:32 ballen4705 Exp $
+$Id: smartd.8,v 1.7 2002/10/14 15:26:30 ballen4705 Exp $
diff --git a/sm5/smartd.c b/sm5/smartd.c
index 57485c9a47036eb40a77823b0825955cf6321057..70a547e8564ba27cccb731fcbfff800c1bd9678a 100644
--- a/sm5/smartd.c
+++ b/sm5/smartd.c
@@ -1,4 +1,4 @@
-//  $Id: smartd.c,v 1.7 2002/10/11 12:15:50 ballen4705 Exp $
+//  $Id: smartd.c,v 1.8 2002/10/14 15:26:30 ballen4705 Exp $
 /*
  * smartd.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include <stdio.h>
@@ -264,7 +270,7 @@ char copyleftstring[]=
 "is free software, and you are welcome to redistribute it\n"
 "under the terms of the GNU General Public License Version 2.\n"
 "See http://www.gnu.org for further details.\n\n"
-"CVS Version ID $Id: smartd.c,v 1.7 2002/10/11 12:15:50 ballen4705 Exp $\n";
+"CVS Version ID $Id: smartd.c,v 1.8 2002/10/14 15:26:30 ballen4705 Exp $\n";
 
 const char opts[] = { DEBUGMODE, EMAILNOTIFICATION, PRINTCOPYLEFT,'\0' };
 
diff --git a/sm5/smartd.cpp b/sm5/smartd.cpp
index 78d2104959a9142c9eeddb257d4f3618477a2a91..ef3aa912d435e72c1156300b0743a172e3968cd6 100644
--- a/sm5/smartd.cpp
+++ b/sm5/smartd.cpp
@@ -1,4 +1,4 @@
-//  $Id: smartd.cpp,v 1.7 2002/10/11 12:15:50 ballen4705 Exp $
+//  $Id: smartd.cpp,v 1.8 2002/10/14 15:26:30 ballen4705 Exp $
 /*
  * smartd.c
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 #include <stdio.h>
@@ -264,7 +270,7 @@ char copyleftstring[]=
 "is free software, and you are welcome to redistribute it\n"
 "under the terms of the GNU General Public License Version 2.\n"
 "See http://www.gnu.org for further details.\n\n"
-"CVS Version ID $Id: smartd.cpp,v 1.7 2002/10/11 12:15:50 ballen4705 Exp $\n";
+"CVS Version ID $Id: smartd.cpp,v 1.8 2002/10/14 15:26:30 ballen4705 Exp $\n";
 
 const char opts[] = { DEBUGMODE, EMAILNOTIFICATION, PRINTCOPYLEFT,'\0' };
 
diff --git a/sm5/smartd.h b/sm5/smartd.h
index 9490ef4360216376af3f30fc2acca498aace6792..a959f32936fba9db5bd93d9780f1083ef28dc206 100644
--- a/sm5/smartd.h
+++ b/sm5/smartd.h
@@ -1,4 +1,4 @@
-//  $Id: smartd.h,v 1.3 2002/10/11 09:20:32 ballen4705 Exp $
+//  $Id: smartd.h,v 1.4 2002/10/14 15:26:32 ballen4705 Exp $
 /*
  * smartd.h
  *
@@ -13,6 +13,12 @@
  * You should have received a copy of the GNU General Public License
  * (for example COPYING); if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * This code was originally developed as a Senior Thesis by Michael Cornwell
+ * at the Concurrent Systems Laboratory (now part of the Storage Systems
+ * Research Center), Jack Baskin School of Engineering, University of
+ * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
+ *
  */
 
 /* Defines for command line options */ 
diff --git a/sm5/smartd.initd b/sm5/smartd.initd
index 2f57f8f21446954d03b9a5d403eb9afd323eba09..48ca36e30194b72b2cb32e1795c374151d318663 100755
--- a/sm5/smartd.initd
+++ b/sm5/smartd.initd
@@ -6,7 +6,7 @@
 #
 # processname: smartd 
 #
-# $Id: smartd.initd,v 1.3 2002/10/11 09:20:32 ballen4705 Exp $
+# $Id: smartd.initd,v 1.4 2002/10/14 15:26:32 ballen4705 Exp $
 #
 # Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
 # 
@@ -18,7 +18,12 @@
 # You should have received a copy of the GNU General Public License (for
 # example COPYING); if not, write to the Free Software Foundation, Inc., 675
 # Mass Ave, Cambridge, MA 02139, USA.
-
+#
+# This code was originally developed as a Senior Thesis by Michael Cornwell
+# at the Concurrent Systems Laboratory (now part of the Storage Systems
+# Research Center), Jack Baskin School of Engineering, University of
+# California, Santa Cruz. http://ssrc.soe.ucsc.edu/.
+#
 # source function library
 . /etc/rc.d/init.d/functions
 
diff --git a/sm5/smartmontools.spec b/sm5/smartmontools.spec
index 953f50f82cc27eb5abc0e5f0bb53e938a0eba41f..1933de0a1e4b464287c09630ed0f1b11b53cee50 100644
--- a/sm5/smartmontools.spec
+++ b/sm5/smartmontools.spec
@@ -1,4 +1,4 @@
-Release:  6
+Release:  7
 Summary:	SMARTmontools - for monitoring S.M.A.R.T. disks and devices
 Name:		smartmontools
 Version:	5.0