Skip to content
Snippets Groups Projects
Commit ba0f9cb5 authored by ballen4705's avatar ballen4705
Browse files

Preparation for a new release

git-svn-id: https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk@1765 4ea69e1a-61f1-4043-bf83-b5c94c648137
parent 444cd8a3
No related branches found
No related tags found
No related merge requests found
CHANGELOG for smartmontools CHANGELOG for smartmontools
$Id: CHANGELOG,v 1.417 2004/06/24 12:28:38 chrfranke Exp $ $Id: CHANGELOG,v 1.418 2004/07/05 07:41:52 ballen4705 Exp $
The most recent version of this file is: The most recent version of this file is:
http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/CHANGELOG?sortby=date&view=markup http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/CHANGELOG?sortby=date&view=markup
...@@ -27,6 +27,10 @@ NOTES FOR FUTURE RELEASES: see TODO file. ...@@ -27,6 +27,10 @@ NOTES FOR FUTURE RELEASES: see TODO file.
<ADDITIONS TO THE CHANGE LOG SHOULD BE ADDED JUST BELOW HERE, PLEASE> <ADDITIONS TO THE CHANGE LOG SHOULD BE ADDED JUST BELOW HERE, PLEASE>
smartmontools 5.32
[BA] Update link to revised/updated IBM Deskstar Firmware
[CF] Cygwin & Windows: Added missing ASPI manager initialization [CF] Cygwin & Windows: Added missing ASPI manager initialization
with GetASPI32SupportInfo(). Thanks to Nikolai SAOUKH for pointing with GetASPI32SupportInfo(). Thanks to Nikolai SAOUKH for pointing
this out and providing a patch. this out and providing a patch.
......
smartmontools NEWS smartmontools NEWS
------------------ ------------------
CVS ID: $Id: NEWS,v 1.21 2004/05/04 22:12:07 ballen4705 Exp $ CVS ID: $Id: NEWS,v 1.22 2004/07/05 07:41:52 ballen4705 Exp $
The most up-to-date version of this file is: The most up-to-date version of this file is:
http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/NEWS?sortby=date&view=markup http://cvs.sourceforge.net/viewcvs.py/smartmontools/sm5/NEWS?sortby=date&view=markup
Date 2004-7-5
Summary: smartmontools release 5.32 (STABLE)
-----------------------------------------------------------
This is an stable release of smartmontools.
Date: 2004-5-4 Date: 2004-5-4
Summary: smartmontools release 5.31 (UNSTABLE/EXPERIMENTAL) Summary: smartmontools release 5.31 (UNSTABLE/EXPERIMENTAL)
----------------------------------------------------------- -----------------------------------------------------------
......
...@@ -3,7 +3,13 @@ ...@@ -3,7 +3,13 @@
# do a smartmontools release # do a smartmontools release
# (C) 2003-4 Bruce Allen <ballen4705@users.sourceforge.net>, # (C) 2003-4 Bruce Allen <ballen4705@users.sourceforge.net>,
# Guido Guenther <agx@sigxcpu.org> # Guido Guenther <agx@sigxcpu.org>
# $Id: do_release,v 1.30 2004/05/04 21:30:58 ballen4705 Exp $ # $Id: do_release,v 1.31 2004/07/05 07:41:52 ballen4705 Exp $
# Notes on generating releases:
# (1) update NEWS
# (2) update CHANGELOG -- put in release number
# (3) update release number in configure.in and smartmontools.spec
# (4) update internal changelog in smartmontools.spec
USECVS=1 USECVS=1
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "utility.h" // includes <regex.h> #include "utility.h" // includes <regex.h>
#include "config.h" #include "config.h"
const char *knowndrives_c_cvsid="$Id: knowndrives.c,v 1.110 2004/06/04 17:02:35 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.c,v 1.111 2004/07/05 07:41:52 ballen4705 Exp $"
ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID; ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID;
#define MODEL_STRING_LENGTH 40 #define MODEL_STRING_LENGTH 40
...@@ -145,7 +145,7 @@ const drivesettings knowndrives[] = { ...@@ -145,7 +145,7 @@ const drivesettings knowndrives[] = {
".*", ".*",
"IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n" "IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n"
"Please see http://www.geocities.com/dtla_update/index.html#rel and\n" "Please see http://www.geocities.com/dtla_update/index.html#rel and\n"
"http://www-1.ibm.com/support/docview.wss?rs=0&q=DTLA&uid=psg1MIGR-44195", "http://www-3.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-42215",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // IBM Deskstar 40GV & 75GXP series (A5AA/A6AA firmware) { // IBM Deskstar 40GV & 75GXP series (A5AA/A6AA firmware)
...@@ -158,7 +158,7 @@ const drivesettings knowndrives[] = { ...@@ -158,7 +158,7 @@ const drivesettings knowndrives[] = {
".*", ".*",
"IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n" "IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n"
"Please see http://www.geocities.com/dtla_update/ and\n" "Please see http://www.geocities.com/dtla_update/ and\n"
"http://www-1.ibm.com/support/docview.wss?rs=0&q=DTLA&uid=psg1MIGR-44195", "http://www-3.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-42215",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // ExcelStor J240 { // ExcelStor J240
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "utility.h" // includes <regex.h> #include "utility.h" // includes <regex.h>
#include "config.h" #include "config.h"
const char *knowndrives_c_cvsid="$Id: knowndrives.cpp,v 1.110 2004/06/04 17:02:35 ballen4705 Exp $" const char *knowndrives_c_cvsid="$Id: knowndrives.cpp,v 1.111 2004/07/05 07:41:52 ballen4705 Exp $"
ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID; ATACMDS_H_CVSID ATAPRINT_H_CVSID CONFIG_H_CVSID EXTERN_H_CVSID INT64_H_CVSID KNOWNDRIVES_H_CVSID UTILITY_H_CVSID;
#define MODEL_STRING_LENGTH 40 #define MODEL_STRING_LENGTH 40
...@@ -145,7 +145,7 @@ const drivesettings knowndrives[] = { ...@@ -145,7 +145,7 @@ const drivesettings knowndrives[] = {
".*", ".*",
"IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n" "IBM Deskstar 60GXP drives may need upgraded SMART firmware.\n"
"Please see http://www.geocities.com/dtla_update/index.html#rel and\n" "Please see http://www.geocities.com/dtla_update/index.html#rel and\n"
"http://www-1.ibm.com/support/docview.wss?rs=0&q=DTLA&uid=psg1MIGR-44195", "http://www-3.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-42215",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // IBM Deskstar 40GV & 75GXP series (A5AA/A6AA firmware) { // IBM Deskstar 40GV & 75GXP series (A5AA/A6AA firmware)
...@@ -158,7 +158,7 @@ const drivesettings knowndrives[] = { ...@@ -158,7 +158,7 @@ const drivesettings knowndrives[] = {
".*", ".*",
"IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n" "IBM Deskstar 40GV and 75GXP drives may need upgraded SMART firmware.\n"
"Please see http://www.geocities.com/dtla_update/ and\n" "Please see http://www.geocities.com/dtla_update/ and\n"
"http://www-1.ibm.com/support/docview.wss?rs=0&q=DTLA&uid=psg1MIGR-44195", "http://www-3.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-42215",
NULL, NULL, NULL NULL, NULL, NULL
}, },
{ // ExcelStor J240 { // ExcelStor J240
......
...@@ -35,7 +35,7 @@ Packager: Bruce Allen <smartmontools-support@lists.sourceforge.net> ...@@ -35,7 +35,7 @@ Packager: Bruce Allen <smartmontools-support@lists.sourceforge.net>
# http://ftp1.sourceforge.net/smartmontools/smartmontools-%{version}-%{release}.tar.gz # http://ftp1.sourceforge.net/smartmontools/smartmontools-%{version}-%{release}.tar.gz
# CVS ID of this file is: # CVS ID of this file is:
# $Id: smartmontools.spec,v 1.158 2004/05/07 18:33:53 ballen4705 Exp $ # $Id: smartmontools.spec,v 1.159 2004/07/05 07:41:52 ballen4705 Exp $
# Copyright (C) 2002-4 Bruce Allen <smartmontools-support@lists.sourceforge.net> # Copyright (C) 2002-4 Bruce Allen <smartmontools-support@lists.sourceforge.net>
# Home page: http://smartmontools.sourceforge.net/ # Home page: http://smartmontools.sourceforge.net/
...@@ -324,6 +324,46 @@ fi ...@@ -324,6 +324,46 @@ fi
# [PW] Phil Williams # [PW] Phil Williams
%changelog %changelog
* Mon Jul 5 2004 Bruce Allen <smartmontools-support@lists.sourceforge.net>
[BA] Update link to revised/updated IBM Deskstar Firmware
[CF] Cygwin & Windows: Added missing ASPI manager initialization
with GetASPI32SupportInfo(). Thanks to Nikolai SAOUKH for pointing
this out and providing a patch.
[BA] modified smartd init script to work on whitebox (thanks to
Michael Falzon)
[BA] removed (reverted) additional Attribute definitions from
http://smart.friko.pl/attributes.php. All (or most?) of these
appear to be return code values for the WD Digital Life Guard Utility.
[PW] Added Seagate Medalist 17242, 13032, 10232, 8422, and 4312 to
knowndrives table. Added missing Seagate U Series 5 drives.
[PW] Added the following QUANTUM models to knowndrives table:
FIREBALL EX6.4A, FIREBALLP AS10.2, FIREBALLP AS40.0, FIREBALL CR4.3A,
FIREBALLP LM15, FIREBALLP LM30, and FIREBALLlct20 30
[PW] Added missing Western Digital Protege drives to knowndrives table.
[PW] Added Maxtor DiamondMax 40 ATA 66 series and DiamondMax 40 VL Ultra
ATA 100 series to knowndrives table.
[PW] Added the following Hitachi/IBM drives to knowndrives table:
HITACHI_DK14FA-20B, Travelstar 40GNX series, Travelstar 4LP series,
and Travelstar DK23XXB series. Added the missing Travelstar 80GN
drives.
[PW] Added Fujitsu MPB series and MPG series to knowndrives table. Added
the missing Fujitsu MHSxxxxAT drives.
[KS] Solaris: added workaround for dynamic change of time-zone.
[KS] Solaris: fixed problem that autogen.sh cannot detect absence of
auto* tools.
[BA] smartd: added time-zone bug information to man page.
Reverted CF code for _WIN32 case.
[CF] Cygwin & Windows: Added better error messages on IDE/ATA device
open error.
[BA] added additional Attribute definitions from
http://smart.friko.pl/attributes.php
[BA] smartd: reworked TimeZone bug workaround so it is only invoked
for glibc. Note: this might not be right -- a similar bug may
exist in other platform's libcs.
[DG] SCSI smartmontools documentation updated [2004/5/6]. See:
http://smartmontools.sourceforge.net/smartmontools_scsi.html
[CF] Windows: Fixed reset of TZ=GMT in glibc timezone bug workaround.
* Tue May 4 2004 Bruce Allen <smartmontools-support@lists.sourceforge.net> * Tue May 4 2004 Bruce Allen <smartmontools-support@lists.sourceforge.net>
[DG] move SCSI device temperature and start-stop log page output [DG] move SCSI device temperature and start-stop log page output
(smartctl) into --attributes section (was in --info section). (smartctl) into --attributes section (was in --info section).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment