diff options
author | Neil Brown <neilb@suse.de> | 2006-06-16 02:54:14 +0200 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2006-06-16 02:54:14 +0200 |
commit | beca3d00d9cca2c0dc4edffe6f20e21f45db2757 (patch) | |
tree | 022a550c92c449de0532d3ad1c33fbb823923bdc | |
parent | Update Changelog for 2.5.1 (diff) | |
download | mdadm-beca3d00d9cca2c0dc4edffe6f20e21f45db2757.tar.xz mdadm-beca3d00d9cca2c0dc4edffe6f20e21f45db2757.zip |
Release 2.5.1mdadm-2.5.1
-rw-r--r-- | ANNOUNCE-2.5.1 | 40 | ||||
-rw-r--r-- | ReadMe.c | 2 | ||||
-rw-r--r-- | inventory | 2 | ||||
-rwxr-xr-x | makedist | 4 | ||||
-rw-r--r-- | mdadm.8 | 2 | ||||
-rw-r--r-- | mdadm.spec | 2 | ||||
-rw-r--r-- | mdassemble.8 | 2 | ||||
-rw-r--r-- | xlate.h | 0 |
8 files changed, 48 insertions, 6 deletions
diff --git a/ANNOUNCE-2.5.1 b/ANNOUNCE-2.5.1 index e69de29b..75c48e85 100644 --- a/ANNOUNCE-2.5.1 +++ b/ANNOUNCE-2.5.1 @@ -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 + + @@ -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 @@ -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 @@ -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 @@ -1,5 +1,5 @@ .\" -*- nroff -*- -.TH MDADM 8 "" v2.5 +.TH MDADM 8 "" v2.5.1 .SH NAME mdadm \- manage MD devices .I aka @@ -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/ diff --git a/mdassemble.8 b/mdassemble.8 index 3055e82e..6ef85a23 100644 --- a/mdassemble.8 +++ b/mdassemble.8 @@ -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 index e69de29b..00000000 --- a/xlate.h +++ /dev/null |