Update version number for e2fsprogs 1.35 release.

bitmap-optimize
Theodore Ts'o 2004-02-28 10:52:35 -05:00
parent 86d564e6b5
commit b70b1167fe
29 changed files with 148 additions and 14 deletions

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-21 Matthias Andree <matthias.andree@gmx.de>
* configure.in: Add -mieee to CFLAGS if we're using GCC and the CPU is

View File

@ -1,5 +1,18 @@
E2fsprogs 1.35-WIP (January 31, 2004)
=====================================
E2fsprogs 1.35 (February 28, 2004)
==================================
E2fsck has a new -k option, which in conjuction with the -c options,
preserves the existing badblocks list.
Cleaned up e2fsck's preem-mode messages during the passes 1b, 1c, and 1d.
E2fsprogs will now deal correctly with symlinks that contain
extended attribute information, which can be created using SE Linux.
(Addresses Debian Bug #232328)
Remove a double longjump into an invalid stack frame bug in e2fsck.
(This was during an abort sequence, which normally worked on Linux and
caused a core dump on other operating systems.)
Fix NLS bug in e2fsck, by avoiding trying to expand an empty string
(the NLS library will replace "" with the .po header information).
@ -14,7 +27,7 @@ directory. (Addresses Debian bug #219640).
Fixed a bug where e2fsck would bomb out if a journal needed to be
replayed when using an alternate superblock.
E2fsck will give an extra grace period before actually forcing a check
2fsck will give an extra grace period before actually forcing a check
if the laptop is running on battery. The next time fsck runs while
the system is on the AC mains, or after the grace period is exceeded,
the filesystem will be checked. (Addresses Debian bug #205177)
@ -74,6 +87,9 @@ debugfs now searches for the appropriate pager to use, beginning with
/usr/bin/pager, and then falling back to 'more' and 'less'.
(Addresses Debian bug #221977)
Debugfs will now support 2.6 device numbers where the major or minor
number may be larger than 255. (Addresses Sourceforge bug #865289)
Chattr now stops processing options when it sees '--'. (Addresses
Debian bug #225188)
@ -93,8 +109,11 @@ read-write tests, we try to recover after an error so that we can
continue reading on page-aligned boundaries. (Addresses Debian Bug
#203713)
Badblocks now checks 64 blocks at a time instead of 16. (Addresses
Debian bug #232240)
Updated and clarified various man pages. (Addresses Debian Bug
#206845, #222606, #214920)
#206845, #222606, #214920, #232406)
Updated and fixed translations. (Addresses Debian bugs #200086, #214633)
@ -103,6 +122,13 @@ Fixed various Debian packaging issues (see debian/changelog).
Programmer's notes:
-------------------
Fixed a build problem so that e2fsprogs would compile with the
--enable-profile option to configure selected. (Addresses Sourceforge
bug #811408)
Fixed C++ problems with the ext2fs.h header. (Addresses Red Hat
Bugzilla Bug #112448)
Centralize code which calculates the location of the superblock
and block group descriptors so that it is in a single library routine.

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

12
debian/changelog vendored
View File

@ -1,3 +1,15 @@
e2fsprogs (1.35-1) unstable; urgency=low
* New upstream version.
* Fix "badblocks -t random". (Closes: #234828)
* Fix "e2fsck -k". (Closes: #234993)
* Change badblock's default number of blocks tested at once from
16 to 64. (Closes: #232240)
* ss-dev and comerr-dev now use a versioned dependency for libss2 and
libcomerr2, respectively. (Closes: #235280)
-- Theodore Y. Ts'o <tytso@mit.edu> Sat, 28 Feb 2004 10:14:19 -0500
e2fsprogs (1.34+1.35-WIP-2004.01.31-2) unstable; urgency=low
* Add a new -k option to e2fsck which keeps the existing badblocks

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-23 Theodore Ts'o <tytso@mit.edu>
* debugfs.c (internal_dump_inode): Display the major/minor device

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -31,7 +31,7 @@ END-INFO-DIR-ENTRY
This file documents the ext2fs library, a library for manipulating the
ext2 filesystem.
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Theodore Ts'o
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Theodore Ts'o
Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
@ -62,7 +62,7 @@ by the author.
@title The EXT2FS Library
@subtitle The EXT2FS Library
@subtitle Version 1.35
@subtitle August 2003
@subtitle February 2004
@author by Theodore Ts'o
@ -77,7 +77,7 @@ by the author.
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 1997, 1998, 1999, 2000, 2001, 2002, 2003 Theodore Ts'o
Copyright @copyright{} 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Theodore Ts'o
@sp 2

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-24 Theodore Ts'o <tytso@mit.edu>
* unix.c (main, PRS), e2fsck.8.in: Add a new -k option which keeps

View File

@ -1,16 +1,16 @@
Begin3
Title: EXT2 Filesystem utilities
Version: 1.34
Entered-date: 25July2003
Version: 1.35
Entered-date: 28February2004
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
3008kB e2fsprogs-1.34.tar.gz
388kB e2fsprogs-libs-1.34.tar.gz
1kB e2fsprogs-1.34.lsm
3084kB e2fsprogs-1.35.tar.gz
384kB e2fsprogs-libs-1.35.tar.gz
1kB e2fsprogs-1.35.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/2.5.x/2.6.x
Copying-policy: GPL/LGPL

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-12-07 Theodore Ts'o <tytso@mit.edu>
* probe.c, read.c, blkidP.h: Fix gcc -Wall nitpicks.

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-01-31 Theodore Ts'o <tytso@mit.edu>
* fgetflags.c, fgetversion.c, fsetflags.c, fsetversion.c: Apply

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-12-11 Theodore Ts'o <tytso@thunk.org>
* com_err.3: Fix C syntax error pointed out by ESR.

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-08-01 Philipp Thomas <pthomas@suse.de>
* fs_ext2.c (fs_cleanup, fs_init_task, fs_set_volumes): Use an

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-21 Theodore Ts'o <tytso@mit.edu>
* ext2fs.h (ext2fs_resize_mem): Fix C++ problem. (Addresses Red

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-12-07 Theodore Ts'o <tytso@mit.edu>
* list_rqs.c, listen.c, requests.c, ss.h, ss_internal.h: Fix gcc

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-01-30 Theodore Ts'o <tytso@mit.edu>
* gen_uuid.c (uuid_generate_time): Fix bug pointed out by Ralf

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* badblocks.c (main): Change the default number of blocks tested

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-12-07 Theodore Ts'o <tytso@mit.edu>
* cs.po: Fix mangled encoding in Czech locale file. (Addresses

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-12-07 Theodore Ts'o <tytso@mit.edu>
* main.c, resize2fs.c: Fix gcc -Wall nitpicks.

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-01-30 Theodore Ts'o <tytso@mit.edu>
* f_selinux: Add test case which tests SE Linux generated symlinks

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2003-07-25 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.34

View File

@ -1,3 +1,7 @@
2004-02-28 Theodore Ts'o <tytso@mit.edu>
* Release of E2fsprogs 1.35
2004-02-21 Matthias Andree <matthias.andree@gmx.de>
* gen-tarball.in: Do not package autom4te.cache directory.

View File

@ -6,5 +6,5 @@
* Ts'o. This file may be redistributed under the GNU Public License.
*/
#define E2FSPROGS_VERSION "1.35-WIP"
#define E2FSPROGS_DATE "31-Jan-2004"
#define E2FSPROGS_VERSION "1.35"
#define E2FSPROGS_DATE "28-Feb-2004"