From: Barry Naujok Date: Mon, 3 Mar 2008 03:07:47 +0000 (+0000) Subject: Debian and version updates X-Git-Tag: v2.10.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31736b2a771274ad10dab559045699c2a1c53baf;p=thirdparty%2Fxfsprogs-dev.git Debian and version updates Merge of master-melb:xfs-cmds:30604a by kenmcd. Bump to 2.9.7 --- diff --git a/VERSION b/VERSION index 93f60cc36..379e64684 100644 --- a/VERSION +++ b/VERSION @@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=9 -PKG_REVISION=6 +PKG_REVISION=7 PKG_BUILD=1 diff --git a/debian/changelog b/debian/changelog index dd6750aa1..912a9b01d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 01 Mar 2008 06:24:21 +1100 + xfsprogs (2.9.5-1) unstable; urgency=low * New upstream release. diff --git a/debian/control b/debian/control index 16a52c879..5fa88cda5 100644 --- a/debian/control +++ b/debian/control @@ -2,6 +2,7 @@ Source: xfsprogs Section: admin Priority: optional Maintainer: Nathan Scott +Uploaders: Anibal Monsalve Salazar , Niv Sardi Build-Depends: uuid-dev, autoconf, debhelper (>= 5), gettext, libtool, libreadline5-dev Standards-Version: 3.5.9 diff --git a/doc/CHANGES b/doc/CHANGES index 299b015ea..ebe46f995 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -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. diff --git a/fsck/xfs_fsck.sh b/fsck/xfs_fsck.sh index 016b22dc7..ec73bcc73 100755 --- a/fsck/xfs_fsck.sh +++ b/fsck/xfs_fsck.sh @@ -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=\${$#}