aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--README2
-rw-r--r--RELEASE-NOTES35
-rw-r--r--contrib/ChangeLog4
-rw-r--r--debugfs/ChangeLog4
-rw-r--r--doc/ChangeLog4
-rw-r--r--doc/libext2fs.texinfo6
-rw-r--r--e2fsck/ChangeLog4
-rw-r--r--e2fsprogs.lsm8
-rw-r--r--e2fsprogs.spec2
-rw-r--r--include/linux/ChangeLog4
-rw-r--r--include/nonunix/ChangeLog4
-rw-r--r--install-utils/ChangeLog4
-rw-r--r--intl/ChangeLog4
-rw-r--r--lib/ChangeLog4
-rw-r--r--lib/e2p/ChangeLog4
-rw-r--r--lib/et/ChangeLog4
-rw-r--r--lib/ext2fs/ChangeLog4
-rw-r--r--lib/ss/ChangeLog4
-rw-r--r--lib/uuid/ChangeLog4
-rw-r--r--misc/ChangeLog4
-rw-r--r--po/ChangeLog4
-rw-r--r--resize/ChangeLog4
-rw-r--r--tests/ChangeLog4
-rw-r--r--tests/progs/ChangeLog4
-rw-r--r--util/ChangeLog4
-rw-r--r--version.h4
27 files changed, 128 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c565728..84c46c26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-27 Theodore Tso <tytso@valinux.com>
* configure.in: Check for the presence of strnlen. Stop checking
diff --git a/README b/README
index ca39fee8..e13a2a56 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
- This is the new version (1.23) of the second extended file
+ This is the new version (1.24) of the second extended file
system management programs.
From time to time, I release new versions of e2fsprogs, to fix
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 5fd58ad7..bcc6a634 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,5 +1,36 @@
-E2fsprogs 1.23-WIP (August 15, 2001)
-====================================
+E2fsprogs 1.24 (August 30, 2001)
+================================
+
+Revert the BLKGETSIZE64 support, since for some distributions, this
+ioctl has been used by an unofficial kernel patch to update the last
+sector on the disk, and this was causing disk corruption problems as a
+result.
+
+Mke2fs is now more careful about zapping swap space signatures and
+other filesystem/raid superblock magic values so that programs like
+mount who try to use hueristics to determine the filesystem type of a
+partition are less likely to be confused.
+
+E2fsck will no longer complain if the the mode of EXT2_RESIZE_INO is a
+regular file (since Andreas Dilger's on-line resizing tools will set
+its mode bits).
+
+Fixed some minor texinfo, man pages nits for spelling errors,
+texinfo warnings, etc. (Addresses Debian bug #110621.)
+
+E2fsprogs program no longer print the filesystem version number
+(i.e. 0.5b), since it only confuses people and doesn't serve any real
+purpose.
+
+E2fsck will once again compile under libc5, since it will supply its
+own version of strnlen if necesssary.
+
+mke2fs and tune2fs will allow the use of UUID= or LABEL= specifiers
+when specifying the external journal device. tune2fs will also search
+devices looking for the externla journal debice when removing.
+
+E2fsprogs 1.23 (August 15, 2001)
+================================
Add initial support for extended attributes (EA); e2fsck will
correctly handle a filesystem with EA's and check the EA blocks for
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 88af4f04..61b21753 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog
index 8ee0f755..6db47ae8 100644
--- a/debugfs/ChangeLog
+++ b/debugfs/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-27 Theodore Tso <tytso@valinux.com>
* debugfs.c (main): Remove EXT2FS_VERSION from the version
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 6a1ee19a..012f1e8d 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-30 Theodore Tso <tytso@valinux.com>
* libext2fs.texinfo: Remove texinfo warnings by adding white space
diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo
index e582d62b..13c50f80 100644
--- a/doc/libext2fs.texinfo
+++ b/doc/libext2fs.texinfo
@@ -1,7 +1,7 @@
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename libext2fs.info
-@settitle The EXT2FS Library (version 1.23)
+@settitle The EXT2FS Library (version 1.24)
@synindex tp fn
@comment %**end of header
@@ -61,7 +61,7 @@ by the author.
@title The EXT2FS Library
@subtitle The EXT2FS Library
-@subtitle Version 1.23
+@subtitle Version 1.24
@subtitle "August 2001
@author by Theodore Ts'o
@@ -102,7 +102,7 @@ by the Foundation.
@top The EXT2FS Library
-This manual documents the EXT2FS Library, version 1.23.
+This manual documents the EXT2FS Library, version 1.24.
@end ifinfo
diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog
index 6d006ce1..bf114f3b 100644
--- a/e2fsck/ChangeLog
+++ b/e2fsck/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-30 Theodore Tso <tytso@valinux.com>
* pass1.c (e2fsck_pass1): For EXT2_RESIZE_INO, allow its i_mode to
diff --git a/e2fsprogs.lsm b/e2fsprogs.lsm
index b852f27d..9ce61fcd 100644
--- a/e2fsprogs.lsm
+++ b/e2fsprogs.lsm
@@ -1,15 +1,15 @@
Begin3
Title: EXT2 Filesystem utilities
-Version: 1.23
-Entered-date: 15Aug2001
+Version: 1.24
+Entered-date: 30Aug2001
Description: The filesystem utilities for the EXT2 filesystem, including
e2fsck, mke2fs, dumpe2fs, fsck, and others.
Keywords: utilities, fsck, filesystem, Ext2fs
Author: tytso@mit.edu (Theodore Tso)
Maintained-by: tytso@mit.edu (Theodore Tso)
Primary-site: download.sourceforge.net /pub/sourceforge/e2fsprogs
- 1176kB e2fsprogs-1.23.tar.gz
- 1kB e2fsprogs-1.23.lsm
+ 1176kB e2fsprogs-1.24.tar.gz
+ 1kB e2fsprogs-1.24.lsm
Alternate-site:
Platforms: linux 1.2.x/1.3.x/2.0.x/2.1.x/2.2.x/2.3.x/2.4.x
Copying-policy: GPL/LGPL
diff --git a/e2fsprogs.spec b/e2fsprogs.spec
index 7b1b92b4..fc8918f6 100644
--- a/e2fsprogs.spec
+++ b/e2fsprogs.spec
@@ -1,6 +1,6 @@
Summary: Utilities for managing the second extended (ext2) filesystem.
Name: e2fsprogs
-Version: 1.23
+Version: 1.24
Release: 0
Copyright: GPL
Group: System Environment/Base
diff --git a/include/linux/ChangeLog b/include/linux/ChangeLog
index 532932bb..94dfb050 100644
--- a/include/linux/ChangeLog
+++ b/include/linux/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/include/nonunix/ChangeLog b/include/nonunix/ChangeLog
index 6cb2a12e..0a35975c 100644
--- a/include/nonunix/ChangeLog
+++ b/include/nonunix/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/install-utils/ChangeLog b/install-utils/ChangeLog
index 6bf3bee5..d632523a 100644
--- a/install-utils/ChangeLog
+++ b/install-utils/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/intl/ChangeLog b/intl/ChangeLog
index b9891185..849b55e4 100644
--- a/intl/ChangeLog
+++ b/intl/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/lib/ChangeLog b/lib/ChangeLog
index a0a22a5d..b195794e 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog
index f736eda7..7a529f05 100644
--- a/lib/e2p/ChangeLog
+++ b/lib/e2p/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/lib/et/ChangeLog b/lib/et/ChangeLog
index 047abe18..d45a2319 100644
--- a/lib/et/ChangeLog
+++ b/lib/et/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog
index 155c3a77..318e1d45 100644
--- a/lib/ext2fs/ChangeLog
+++ b/lib/ext2fs/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-30 Theodore Tso <tytso@valinux.com>
* getsize.c (ext2fs_get_device_size): Back out BLKGETSIZE64
diff --git a/lib/ss/ChangeLog b/lib/ss/ChangeLog
index 7c3e4e65..4c1da658 100644
--- a/lib/ss/ChangeLog
+++ b/lib/ss/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog
index 057c29d3..ecbf2d13 100644
--- a/lib/uuid/ChangeLog
+++ b/lib/uuid/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/misc/ChangeLog b/misc/ChangeLog
index a89c9434..b1240dc8 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-30 Theodore Tso <tytso@valinux.com>
* badblocks.8.in: Fix spelling typo. (Addresses Debian bug #110621)
diff --git a/po/ChangeLog b/po/ChangeLog
index 05a4ba70..ab02c368 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/resize/ChangeLog b/resize/ChangeLog
index d7273451..6c5f6c89 100644
--- a/resize/ChangeLog
+++ b/resize/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 23403b70..95acc50c 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/tests/progs/ChangeLog b/tests/progs/ChangeLog
index 8fe69394..6f7b2376 100644
--- a/tests/progs/ChangeLog
+++ b/tests/progs/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/util/ChangeLog b/util/ChangeLog
index bec14025..d328d794 100644
--- a/util/ChangeLog
+++ b/util/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-30 Theodore Tso <tytso@thunk.org>
+
+ * Release of E2fsprogs 1.24
+
2001-08-15 Theodore Tso <tytso@valinux.com>
* Release of E2fsprogs 1.23
diff --git a/version.h b/version.h
index 6844356f..cc6ddef9 100644
--- a/version.h
+++ b/version.h
@@ -6,5 +6,5 @@
* Ts'o. This file may be redistributed under the GNU Public License.
*/
-#define E2FSPROGS_VERSION "1.23"
-#define E2FSPROGS_DATE "15-Aug-2001"
+#define E2FSPROGS_VERSION "1.24"
+#define E2FSPROGS_DATE "30-Aug-2001"