diff options
author | Richard Yao <ryao@gentoo.org> | 2014-01-27 04:47:49 +0000 |
---|---|---|
committer | Richard Yao <ryao@gentoo.org> | 2014-01-27 04:47:49 +0000 |
commit | 8a1931588d35cae3e938e71a2e29aaff9e45acac (patch) | |
tree | a31acd507f2f5ca33b8139ec0cd344017dbcd561 /sys-fs | |
parent | remove old openrc-0.12.x versions (diff) | |
download | gentoo-2-8a1931588d35cae3e938e71a2e29aaff9e45acac.tar.gz gentoo-2-8a1931588d35cae3e938e71a2e29aaff9e45acac.tar.bz2 gentoo-2-8a1931588d35cae3e938e71a2e29aaff9e45acac.zip |
Linux 3.13 support: This requires no changes to the ZFS C code, so we just increment the maximum supported kernel.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xBEE84C64)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/zfs-kmod/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sys-fs/zfs-kmod/ChangeLog b/sys-fs/zfs-kmod/ChangeLog index f89c92548dcb..6d5600234a7c 100644 --- a/sys-fs/zfs-kmod/ChangeLog +++ b/sys-fs/zfs-kmod/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/zfs-kmod -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/ChangeLog,v 1.40 2013/11/21 15:47:44 ryao Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/ChangeLog,v 1.41 2014/01/27 04:47:49 ryao Exp $ + + 27 Jan 2014; Richard Yao <ryao@gentoo.org> zfs-kmod-0.6.2-r3.ebuild: + Linux 3.13 support: This requires no changes to the ZFS C code, so we just + increment the maximum supported kernel. *zfs-kmod-0.6.2-r3 (21 Nov 2013) diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild b/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild index 9e33094ba92f..9e4a08ed5de1 100644 --- a/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild +++ b/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild,v 1.1 2013/11/21 15:47:44 ryao Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs-kmod/zfs-kmod-0.6.2-r3.ebuild,v 1.2 2014/01/27 04:47:49 ryao Exp $ EAPI="4" @@ -60,7 +60,7 @@ pkg_setup() { kernel_is ge 2 6 26 || die "Linux 2.6.26 or newer required" [ ${PV} != "9999" ] && \ - { kernel_is le 3 12 || die "Linux 3.12 is the latest supported version."; } + { kernel_is le 3 13 || die "Linux 3.13 is the latest supported version."; } check_extra_config } |