#
PKG_MAJOR=2
PKG_MINOR=5
-PKG_REVISION=5
+PKG_REVISION=6
PKG_BUILD=0
+xfsprogs (2.5.6-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Nathan Scott <nathans@debian.org> Tue, 19 Aug 2003 09:44:48 +1000
+
xfsprogs (2.5.5-1) unstable; urgency=low
- * New upstream release, this is the official XFS 1.3 xfsprogs.
+ * New upstream release.
-- Nathan Scott <nathans@debian.org> Thu, 07 Aug 2003 12:58:36 +1000
+xfsprogs-2.5.6 (19 August 2003)
+ - Fix a mkfs problem where it could exit inappropriately when
+ a large data volume stripe unit was either specified on the
+ command line or via querying the underlying volume manager.
+
xfsprogs-2.5.5 (07 August 2003)
- - XFS 1.3 release version of xfsprogs.
- Update xfs_io command to allow reading from non-XFS files.
- Sync up user/kernel source in libxfs, libxlog and headers.
- Update xfs_db and xfs_logprint commands to print new inode
if (logversion == 2 && (lsunit * blocksize) > 256 * 1024) {
fprintf(stderr,
-_("log stripe unit (%d bytes) is too large for kernel to handle (max 256k)\n"),
+ _("log stripe unit (%d bytes) is too large (maximum is 256KiB)\n"),
(lsunit * blocksize));
lsunit = 32 * 1024;
- fprintf(stderr,
- _("log stripe unit adjusted to 256kb\n"));
+ fprintf(stderr, _("log stripe unit adjusted to 32KiB\n"));
}
protostring = setup_proto(protofile);