]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Release 2.2 mdadm-2.2
authorNeil Brown <neilb@suse.de>
Fri, 9 Dec 2005 04:55:02 +0000 (04:55 +0000)
committerNeil Brown <neilb@suse.de>
Fri, 9 Dec 2005 04:55:02 +0000 (04:55 +0000)
Signed-off-by: Neil Brown <neilb@suse.de>
ANNOUNCE-2.2 [new file with mode: 0644]
ChangeLog
Makefile
ReadMe.c
inventory
mdadm.8
mdadm.spec
mdassemble.8

diff --git a/ANNOUNCE-2.2 b/ANNOUNCE-2.2
new file mode 100644 (file)
index 0000000..8474c21
--- /dev/null
@@ -0,0 +1,50 @@
+Subject:  ANNOUNCE: mdadm 2.2 - A tool for managing Soft RAID under Linux
+
+I am pleased to announce the availability of
+   mdadm version 2.2
+
+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/
+
+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.2 fixes a few small bugs and add as few small elements of
+functionality.  Possibly the most interesting is the addition of
+'README.initramfs' and 'mkinitramfs'.  Feedback on these would be
+most welcome.
+
+Changelog Entries:
+    -   Assorted bug fixes
+    -   Support write-intent-bitmaps on raid10
+    -   Support little-endian (Rather than hostendian) bitmaps.
+    -   Return correct error code from 'mdadm -S'
+    -   Remove extra blank line from 'mdadm -Eb' output.
+    -   Improve option parsing so that -a and -b do not have
+       optional arguements: the arg is either required or not
+       depending on context.
+    -   Allow scanning of devices listed in /proc/partitions even
+       if they don't appear in /dev.
+    -   Support --assume-clean in --create mode as well as --build
+    -   Add support for --monitor to report to syslog: -y or --syslog.
+       Thanks to Ross Vandegrift
+    -   --monitor now reports which device failed in a 'Fail' message
+          This broke with 2.6
+    -   Improve chance of array starting properly after a crash.
+       mdadm was insisting the event numbers were identical, but this
+       isn't needed, and is a problem if the crash was while the metadata
+       was being updated.
+    -   Support --update==uuid
+    -   Added README.initramfs and mkinitramfs to help people use an
+       initram for starting md arrays at boot.
+
+
+Development of mdadm is sponsored by
+ SUSE Labs, Novell Inc.
+
+NeilBrown  5th December 2005
+
+
index 4390e4c86e1461ccd3a98e631cbc72dccd769f74..010d06ca2b0b9b6355068da24d23b001b7c5e611 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Changes Prior to this release
+Changes Prior to 2.2 release
     -   Assorted bug fixes
     -   Support write-intent-bitmaps on raid10
     -   Support little-endian (Rather than hostendian) bitmaps.
index 0ff1adf3eff9330102d168e75c5ec9c84b917409..5f9ba314eb5b287f7fd672a6804ffbd4728ec551 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -132,7 +132,7 @@ install : mdadm mdadm.8 md.4 mdadm.conf.5
 clean : 
        rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
        mdassemble mdassemble.static mdassemble.uclibc mdassemble.klibc swap_super \
-       init.cpio.gz
+       init.cpio.gz mdadm.uclibc.static
 
 dist : clean
        ./makedist
index 98d91cc89f4629bf1951cd7a01c417fbcecb697f..4ec3fef52ebb1da58143728974b05cae7e57c31b 100644 (file)
--- a/ReadMe.c
+++ b/ReadMe.c
@@ -30,7 +30,7 @@
 
 #include "mdadm.h"
 
-char Version[] = Name " - v2.1 - 12 September 2005\n";
+char Version[] = Name " - v2.2 - 5 December 2005\n";
 
 /*
  * File: ReadMe.c
index 1617b08ce4f0543deab57b7b570965622a783c10..9efb2b8037fa6aad1393c5eb4f39e7899fe7be0b 100644 (file)
--- a/inventory
+++ b/inventory
@@ -1,6 +1,7 @@
 
 ANNOUNCE-2.0
 ANNOUNCE-2.1
+ANNOUNCE-2.2
 Assemble.c
 Build.c
 COPYING
diff --git a/mdadm.8 b/mdadm.8
index 6123ccc0261583baa0bcec1ed635a1c07ff6753d..44bcecfc69d7aa3b466c7155060bc5cb9bee550d 100644 (file)
--- a/mdadm.8
+++ b/mdadm.8
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.TH MDADM 8 "" v2.1
+.TH MDADM 8 "" v2.2
 .SH NAME
 mdadm \- manage MD devices
 .I aka
index 32bd6d8741b0396bfa25bdf4d83cd7c50d9cc481..607f43eb7ece0a9e3d9c4dfb219f172bd70bbd88 100644 (file)
@@ -1,6 +1,6 @@
 Summary:     mdadm is used for controlling Linux md devices (aka RAID arrays)
 Name:        mdadm
-Version:     2.1
+Version:     2.2
 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 f003196b0e7e4cf94185c719e7ecb5e5637c4884..710fd1dcebdf0a7b9d2ee4e8728aa6727a7b4f98 100644 (file)
@@ -1,5 +1,5 @@
 .\" -*- nroff -*-
-.TH MDASSEMBLE 8 "" v1.11.0
+.TH MDASSEMBLE 8 "" v2.2
 .SH NAME
 mdassemble \- assemble MD devices
 .I aka