From: Theodore Ts'o Date: Wed, 16 Apr 2003 04:59:59 +0000 (-0400) Subject: Update for 1.33-WIP April 14, 2003 release. X-Git-Tag: E2FSPROGS-1_33-WIP-0414~1 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ba142c1b3b4137c3577640307579354f7c6accb4;p=tools%2Fe2fsprogs.git Update for 1.33-WIP April 14, 2003 release. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 85add88..59c8848 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,8 +1,46 @@ -E2fsprogs 1.33-WIP (March 30, 2003) +E2fsprogs 1.33-WIP (April 14, 2003) =================================== +Added a new utility program, logsave, which captures the output of a +command in a log file, even if the containing directory hasn't been +mounted yet (in which case the it saves the output in memory until it +can write out the logfile). This is useful for capturing the +output of fsck during the boot sequence. + +Fixed some portability problems that were causing problems under +the Cygwin32 environment. + +Mke2fs now interprets a negative number to the -b option as a minimum +block size. + +Fixed a bug in mke2fs which was incorrectly checking the argument to +the -g option if the default block size was used. (Addresses Debian +bug #188319) + +Fsck now explicitly ignores tmpfs and devpts, and it will complain if +it can not find filesystem checkers for jfs, reseirfs, and xfs. + +E2fsck now updates the global free block and inode counters from the +block group specific counters quietly. This is needed for an +experimental patch which eliminates locking the entire filesystem when +allocating blocks or inodes; if the filesystem is not unmounted +cleanly, the global counts may not be accurate. + +Imported bug fixes to the EVMS plugin from the EVMS 2.0 tree. (EVMS +2.0 is not yet supported; this only pulled in the bug fixes: fixed +possible hangs caused by bugs in calling waitpid, and not setting the +pipe to non-blocking mode; also fixed a file descriptor leak; made +sure all functions call log entry/exit functions.) + +Badblocks now flushes its output file as bad blocks are discovered. + +The uuid library is now more paranoid about assuming the correctness +of the /dev/random device; it mixes in a stream of bytes from +random/srandom, just in case. + Update Debian files to reflect the fact that I am now the Debian -maintainer of e2fsprogs. +maintainer of e2fsprogs. Other various Debian-specific packaging +cleanups. Move the source tarball generation functions from the top-level makefile to the util/gen-tarball script. @@ -21,7 +59,9 @@ e2fsprogs. The ss library will now try to dynamically link to the readline library and use it if it is present in the system. This means that -the debugfs program now has line editing and history features. +the debugfs program now has line editing and history features. The +SS_READLINE_PATH environment variable is used to find a readline or +readline-compatible library. E2fsck now finds most duplicate filenames (all when rebuilding all directories via the -D option) and offers to delete or rename @@ -70,7 +110,7 @@ Mke2fs no longer creates filesystems with the dir_index flag set by default; the user has to specifically request it. Update and clarified various man pages. (Addresses Debian bugs -#173612, #175233, #175113, and #170497, #185945) +#173612, #175233, #175113, and #170497, #185945, #188318) Created man page for the mk_cmds program (from the libss library). @@ -89,6 +129,10 @@ Changes to create a subset distribution which consists only of the et, ss, uuid, and blkid libraries. The configure script and top-level makefile were changed to support working with a subset distribution. +Removed EXT2_FEATURE_RO_COMPAT_BTREE_DIR mention of since it's not +actually used, and might people who are looking for +EXT2_FEATURE_COMPAT_DIR_INDEX, which is in use. + Updated debian files to fix a number of Lintian warnings. Updated config.guess and config.sub with newer versions from the FSF. diff --git a/debian/changelog b/debian/changelog index 60de46d..fd1c962 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +e2fsprogs (1.32+1.33-WIP-2003.04.14-1) unstable; urgency=low + + * New upstream version + * Add new utility program, logsave, to capture the output of fsck + during the boot sequence + + -- Theodore Y. Ts'o Wed, 16 Apr 2003 00:10:58 -0400 + e2fsprogs (1.32+1.33-WIP-2003.03.30-3) unstable; urgency=low * Provide /usr/include/com_err.h, which was previously provided by the diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo index 359778c..858cfa0 100644 --- a/doc/libext2fs.texinfo +++ b/doc/libext2fs.texinfo @@ -62,7 +62,7 @@ by the author. @title The EXT2FS Library @subtitle The EXT2FS Library @subtitle Version 1.33 -@subtitle March 2003 +@subtitle April 2003 @author by Theodore Ts'o diff --git a/version.h b/version.h index 4cfa33f..4b1bb97 100644 --- a/version.h +++ b/version.h @@ -7,4 +7,4 @@ */ #define E2FSPROGS_VERSION "1.33-WIP" -#define E2FSPROGS_DATE "30-Mar-2003" +#define E2FSPROGS_DATE "14-Apr-2003"