]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Debian and version updates
authorBarry Naujok <bnaujok@sgi.com>
Mon, 3 Mar 2008 03:07:47 +0000 (03:07 +0000)
committerBarry Naujok <bnaujok@sgi.com>
Mon, 3 Mar 2008 03:07:47 +0000 (03:07 +0000)
Merge of master-melb:xfs-cmds:30604a by kenmcd.

  Bump to 2.9.7

VERSION
debian/changelog
debian/control
doc/CHANGES
fsck/xfs_fsck.sh

diff --git a/VERSION b/VERSION
index 93f60cc36e15c092409aacfef938eb55bd7f463f..379e646847e237e819120dff9747fc4baad685ca 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
 #
 PKG_MAJOR=2
 PKG_MINOR=9
-PKG_REVISION=6
+PKG_REVISION=7
 PKG_BUILD=1
index dd6750aa14c8bbe9175191a86f48a38f98943bb0..912a9b01dafb4b66cfaff4dcc8375d3ed224c902 100644 (file)
@@ -1,3 +1,12 @@
+xfsprogs (2.9.7-1) unstable; urgency=high
+
+  * New upstream release.
+  * Add -y fsck option (closes: #463810)
+  * Lazy superblock counters not yet mkfs default (closes: #465737, #468184)
+  * xfs_repair memory requirements significantly reduced (closes: #289665)
+
+ -- Nathan Scott <nathans@debian.org>  Sat, 01 Mar 2008 06:24:21 +1100
+
 xfsprogs (2.9.5-1) unstable; urgency=low
 
   * New upstream release.
index 16a52c87929f9080d75512c807799b0cd6cbef36..5fa88cda53ea442a1c8a32cd2348ac2d0727baae 100644 (file)
@@ -2,6 +2,7 @@ Source: xfsprogs
 Section: admin
 Priority: optional
 Maintainer: Nathan Scott <nathans@debian.org>
+Uploaders: Anibal Monsalve Salazar <anibal@debian.org>, Niv Sardi <xaiki@debian.org>
 Build-Depends: uuid-dev, autoconf, debhelper (>= 5), gettext, libtool, libreadline5-dev
 Standards-Version: 3.5.9
 
index 299b015eade6f65cb5361559394b08926fffc6a7..ebe46f9952bbfeefd4cf894298dbe5e4ac59fc76 100644 (file)
@@ -1,3 +1,10 @@
+xfsprogs-2.9.7 (1 Mar 2008)
+       - Lazy superblock counters not yet the default with mkfs.xfs.
+       - Add -y (another no-op) fsck option.
+       - Resolve mkfs allocation group count issue with small devices.
+       - Fix mkfs to sector align the device size so zeroing the end
+         of the device doesn't fail.
+
 xfsprogs-2.9.6 (7 Feb 2008)
        - Fix regression introduced by changing the mkfs.xfs defaults.
        - Made lazy superblock counters the default with mkfs.xfs.
index 016b22dc7ff0c178b3afa4b8ff899618d21b85f7..ec73bcc73951dcf6276ff2aa9a2c9fbac8c9c2dc 100755 (executable)
@@ -4,10 +4,10 @@
 #
 
 AUTO=false
-while getopts ":aA" c
+while getopts ":aAy" c
 do
        case $c in
-       a|A)    AUTO=true;;
+       a|A|y)  AUTO=true;;
        esac
 done
 eval DEV=\${$#}