Whamcloud - gitweb
ChangeLog, depfix.sed:
authorTheodore Ts'o <tytso@mit.edu>
Mon, 19 Jul 1999 15:48:08 +0000 (15:48 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 19 Jul 1999 15:48:08 +0000 (15:48 +0000)
  depfix.sed: Remove all line continuations from the dependencies; the
   word wrapping is now done by wordwrap.pl.
README, RELEASE-NOTES, TODO, e2fsprogs.spec:
  Update for 1.15 release.

ChangeLog
README
RELEASE-NOTES
TODO
depfix.sed
e2fsprogs.spec

index 98c2992..11ed39c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-07-03    <tytso@valinux.com>
 
+       * depfix.sed: Remove all line continuations from the dependencies;
+               the word wrapping is now done by wordwrap.pl.
+
        * MCONFIG.in (BUILD_CC):
        * configure.in (BUILD_CC): If cross compiling, find the native C
                compiler and set it to BUILD_CC so that we can
@@ -8,8 +11,6 @@
                change the Hurd's defaults so that root files are placed
                in / instead of /usr/local.
 
-1999-07-03    <tytso@valinux.com>
-
        * Makefile.in (depend): Make "make depend" at the top-level
                automatically recurse through all subdirectories.
 
@@ -21,8 +22,6 @@
 
        * wordwrap.pl: New file which does the word wrapping.
 
-1999-07-03    <tytso@valinux.com>
-
        * MCONFIG.in (subst): Add rule to build the util/subst program if
                necessary (by cd'ing to $(top_builddir)/util and making it.)
 
diff --git a/README b/README
index 5fd3da5..5d565de 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-       This is the new version (1.14) of the second extended file system
+       This is the new version (1.15) of the second extended file system
 management programs.
 
        From time to time, I release new versions of e2fsprogs, to fix
@@ -17,6 +17,8 @@ installing e2fsprogs.  This is important!  Note that your /etc/fstab
 file may need modifying before you install the new fsck program.  See
 the INSTALL file for more details.
 
-       In case of bugs in these programs, please contact Ted Ts'o
-<tytso@mit.edu>.  See the e2fsck man page for suggestions of what sort
-of information to include when submitting bug reports for e2fsck.
+       In case of bugs in these programs, please contact Ted Ts'o at
+tytso@valinux.com or tytso@alum.mit.edu.  See the e2fsck man page for
+suggestions of what sort of information to include when submitting bug
+reports for these programs.
+
index dd8ad57..331e4bf 100644 (file)
@@ -1,9 +1,21 @@
-E2fsprogs 1.15 (July 2, 1999)
-=============================
+E2fsprogs 1.15 (July 16, 1999)
+==============================
 
 Add configuration checks so that e2fsprogs will compile cleanly on
 Linux 2.3 kernels that have renamed i_version to i_generation.
 
+E2fsck now prints a progress/completion bar (and not just a simple
+spinner) if the -C0 option is requested or if it receives a SIGUSR1
+signal.  Fsck will automatically manage the (potentially muliple)
+e2fsck processes to print completion bars if it is given a -C option,
+with the right thing happening if multiple filesystems are being
+checked in parallel.
+
+Mke2fs now has better automatic hueristics to determine the filesystem
+parameters to be used for a particular filesystem.  Added a new option
+-T which allows the user to specify how the filesystem is to be used,
+which helps mke2fs do a better job selecting the filesystem parameters.
+
 Fix bug where if /dev/null couldn't be opened (should never happen),
 e2fsck would hang in a tight loop.
 
@@ -57,6 +69,10 @@ filesystem.
 The badblocks program has been updated to display correctly on disks
 with large block numbers.
 
+The badblocks program no longer gives spurious errors when errors
+occur on non-block boundaries, which is common if the blocksize is
+larger than 1k.
+
 Mke2fs will sync the disk device every MKE2FS_SYNC block groups if the
 MKE2FS_SYNC environment variable is set.  This is to work around a VM
 bug in the 2.0 kernel.  I've heard a report that a RAID user was able
diff --git a/TODO b/TODO
index cc694b7..752a636 100644 (file)
--- a/TODO
+++ b/TODO
@@ -21,11 +21,6 @@ appropriate error message.
 Put code into e2fsck to support imagic inodes....
 
 ---------------------------------
-
-Deal with the case where /lost+found isn't a directory....
-
-
---------------------------------------
 Date: Mon, 08 Mar 1999 21:46:14 +0100
 From: Sergio Polini <s.polini@mclink.it>
 
@@ -45,11 +40,5 @@ because "whatever & 0xFF" can never be "> 0xFF".
 Am I wrong?
 --------------------------------------
 
-debugfs --- ls of a corrupt directory (or a non-directory inode) with
-inconsistent lengths can cause it to core dump!  Should fix to make it
-more robust.
-
--------------------------------------
-
-
+Add chmod command to debugfs.
 
index 1bcf112..11c83e9 100644 (file)
 #
 # Remove line continuations....
 #
-#:FIRST
-#y/    / /
-#s/^ *//
-#/\\$/{
-#N
-#y/    / /
-#s/\\\n */ /
-#bFIRST
-#}
-#s/  */ /g
+:FIRST
+y/     / /
+s/^ *//
+/\\$/{
+N
+y/     / /
+s/\\\n */ /
+bFIRST
+}
+s/  */ /g
 
 s;/usr/include/[^ ]* *;;g
 s;/usr/lib/[^ ]* *;;g
index 8f3e7f3..f93d2d4 100644 (file)
@@ -1,10 +1,10 @@
 Summary: Tools for the second extended (ext2) filesystem 
 Name: e2fsprogs
-Version: 1.14
+Version: 1.15
 Release: 0
 Copyright: GPL
 Group: Utilities/System
-Source: ftp://tsx-11.mit.edu/pub/linux/packages/ext2fs/e2fsprogs-1.14.tar.gz
+Source: ftp://tsx-11.mit.edu/pub/linux/packages/ext2fs/e2fsprogs-1.15.tar.gz
 BuildRoot: /tmp/e2fsprogs-root
 
 %description