]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Release 2.5.1 mdadm-2.5.1
authorNeil Brown <neilb@suse.de>
Fri, 16 Jun 2006 00:54:14 +0000 (10:54 +1000)
committerNeil Brown <neilb@suse.de>
Fri, 16 Jun 2006 00:54:14 +0000 (10:54 +1000)
ANNOUNCE-2.5.1
ReadMe.c
inventory
makedist
mdadm.8
mdadm.spec
mdassemble.8
xlate.h [deleted file]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..75c48e857ab34d8ae11761153a48ee054af40d00 100644 (file)
@@ -0,0 +1,40 @@
+Subject:  ANNOUNCE: mdadm 2.5.1 - A tool for managing Soft RAID under Linux
+
+I am pleased to announce the availability of
+   mdadm version 2.5.1
+
+It is available at the usual places:
+   http://www.cse.unsw.edu.au/~neilb/source/mdadm/
+and
+   http://www.{countrycode}.kernel.org/pub/linux/utils/raid/mdadm/
+and via git at
+   git://neil.brown.name/git/mdadm
+
+mdadm is a tool for creating, managing and monitoring
+device arrays using the "md" driver in Linux, also
+known as Software RAID arrays.
+
+Release 2.5.1 adds multiple minor updates including a couple of bugfixes.
+
+Changelog Entries:
+    -   Various fixes for gcc warnings
+    -   uclibc warnings
+    -   Makefile improvements for static linking/intalling
+    -   Makefile uninstall target
+    -   Really fix return status of --examine
+    -   Typos
+    -   Byteorder stuff (again)
+    -   Don't try to create devices with --manage or --grow
+    -   allow default metadata (superblock) type to be specified
+       in mdadm.conf
+    -   Get --stop to list devices stopped but honour --quiet
+    -   remove libssl dependency
+    -   Avoid some misdetection of overlapping partitions
+    -   Fix memory leak in --monitor mode
+
+Development of mdadm is sponsored by
+ SUSE Labs, Novell Inc.
+
+NeilBrown  16th June 2006
+
+
index e259e8806f45cf8a9ec0631315bc60f1893d71ad..89f97cd75b34dae2e67b4e2c1764fbd4ece92cb6 100644 (file)
--- a/ReadMe.c
+++ b/ReadMe.c
@@ -29,7 +29,7 @@
 
 #include "mdadm.h"
 
-char Version[] = Name " - v2.5 -  26 May 2006\n";
+char Version[] = Name " - v2.5.1 -  16 June 2006\n";
 
 /*
  * File: ReadMe.c
index 186c1e0905c4ec4057cde58b55b56bbae9626544..73fcbcd21d1b0109d80ceb07ac25d4f15d2d2e62 100644 (file)
--- a/inventory
+++ b/inventory
@@ -8,6 +8,7 @@ ANNOUNCE-2.4
 ANNOUNCE-2.4-pre1
 ANNOUNCE-2.4.1
 ANNOUNCE-2.5
+ANNOUNCE-2.5.1
 Assemble.c
 Build.c
 COPYING
@@ -50,6 +51,7 @@ mdstat.c
 misc/
 misc/syslog-events
 mkinitramfs
+pwgr.c
 raid5extend.c
 restripe.c
 sha1.c
index db83021873b5bf3b392acbda8e78f8bcb4e1936c..7adbd7f2cdcae491c9795f654fb90098cc690f92 100755 (executable)
--- a/makedist
+++ b/makedist
@@ -46,7 +46,7 @@ then
     exit 1
   fi
   trap "rm $target/$base; exit" 1 2 3
-  ( cd .. ; ln -s mdadm.v2 mdadm-$version ; tar chvf - --exclude="TAGS" --exclude='*~' --exclude=.patches --exclude='*,v' --exclude='*.o' --exclude mdadm --exclude=mdadm'.[^ch0-9]' --exclude=RCS mdadm-$version ; rm mdadm-$version ) | gzip --best > $target/$base
+  ( cd .. ; ln -s mdadm.v2 mdadm-$version ; tar chvf - --exclude=.git --exclude="TAGS" --exclude='*~' --exclude=.patches --exclude='*,v' --exclude='*.o' --exclude mdadm --exclude=mdadm'.[^ch0-9]' --exclude=RCS mdadm-$version ; rm mdadm-$version ) | gzip --best > $target/$base
   chmod a+r $target/$base
   ls -l $target/$base
   if tar tzf $target/$base | sed 's,[^/]*/,,' | sort | diff -u inventory -
@@ -71,7 +71,7 @@ else
     echo $target/$base does not exist.
     exit 1
   fi
-  ( cd .. ; ln -s mdadm.v2 mdadm-$version ; tar chf - --exclude="TAGS" --exclude='*,v' --exclude='*~' --exclude='*.o' --exclude mdadm --exclude=mdadm'.[^ch0-9]' --exclude=RCS mdadm-$version ; rm mdadm-$version ) | gzip --best > /var/tmp/mdadm-new.tgz
+  ( cd .. ; ln -s mdadm.v2 mdadm-$version ; tar chf - --exclude=.git --exclude="TAGS" --exclude='*,v' --exclude='*~' --exclude='*.o' --exclude mdadm --exclude=mdadm'.[^ch0-9]' --exclude=RCS mdadm-$version ; rm mdadm-$version ) | gzip --best > /var/tmp/mdadm-new.tgz
   mkdir /var/tmp/mdadm-old ; zcat $target/$base | ( cd /var/tmp/mdadm-old ; tar xf - )
   mkdir /var/tmp/mdadm-new ; zcat /var/tmp/mdadm-new.tgz | ( cd /var/tmp/mdadm-new ; tar xf - )
   diff -ru /var/tmp/mdadm-old /var/tmp/mdadm-new 
diff --git a/mdadm.8 b/mdadm.8
index 58152b753ff880274f3ab3ad0e42ba88477ee2db..495ad396cebe875f4825c34bcc553433adfe1598 100644 (file)
--- a/mdadm.8
+++ b/mdadm.8
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.TH MDADM 8 "" v2.5
+.TH MDADM 8 "" v2.5.1
 .SH NAME
 mdadm \- manage MD devices
 .I aka
index 597d2364ad3466714233e1127a41f05702c2ea8f..f27e02cecb7342a5f1dd20b90aab2c0a9f83ca94 100644 (file)
@@ -1,6 +1,6 @@
 Summary:     mdadm is used for controlling Linux md devices (aka RAID arrays)
 Name:        mdadm
-Version:     2.5
+Version:     2.5.1
 Release:     1
 Source:      http://www.cse.unsw.edu.au/~neilb/source/mdadm/mdadm-%{version}.tgz
 URL:         http://www.cse.unsw.edu.au/~neilb/source/mdadm/
index 3055e82e78ef532b3dfdc334110d6ae24611ff4a..6ef85a23f55fd3154846160491d1e8ce15ab0e2b 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.TH MDASSEMBLE 8 "" v2.5
+.TH MDASSEMBLE 8 "" v2.5.1
 .SH NAME
 mdassemble \- assemble MD devices
 .I aka
diff --git a/xlate.h b/xlate.h
deleted file mode 100644 (file)
index e69de29..0000000