Merge of master-melb:xfs-cmds:30604a by kenmcd.
Bump to 2.9.7
#
PKG_MAJOR=2
PKG_MINOR=9
-PKG_REVISION=6
+PKG_REVISION=7
PKG_BUILD=1
+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.
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
+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.
#
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=\${$#}