diff options
author | Daniel Drake <dsd@gentoo.org> | 2008-02-11 00:04:10 +0000 |
---|---|---|
committer | Daniel Drake <dsd@gentoo.org> | 2008-02-11 00:04:10 +0000 |
commit | c5d490fd345c7b13acd4dd09fdd10791da8f267b (patch) | |
tree | d902cb9004d2ae8fcc057f9a22b20ca49eddef3e | |
parent | Adding patch to make it install multilib-friendly (diff) | |
download | gentoo-2-c5d490fd345c7b13acd4dd09fdd10791da8f267b.tar.gz gentoo-2-c5d490fd345c7b13acd4dd09fdd10791da8f267b.tar.bz2 gentoo-2-c5d490fd345c7b13acd4dd09fdd10791da8f267b.zip |
Add another vmsplice() security fix. This solves all the current vmsplice exploits that we know about.
(Portage version: 2.1.4.1)
-rw-r--r-- | sys-kernel/gentoo-sources/ChangeLog | 9 | ||||
-rw-r--r-- | sys-kernel/gentoo-sources/gentoo-sources-2.6.23-r8.ebuild | 22 |
2 files changed, 30 insertions, 1 deletions
diff --git a/sys-kernel/gentoo-sources/ChangeLog b/sys-kernel/gentoo-sources/ChangeLog index 8e7dfc1bd768..f7db6ecf985e 100644 --- a/sys-kernel/gentoo-sources/ChangeLog +++ b/sys-kernel/gentoo-sources/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-kernel/gentoo-sources # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.471 2008/02/10 00:36:29 dsd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.472 2008/02/11 00:04:10 dsd Exp $ + +*gentoo-sources-2.6.23-r8 (11 Feb 2008) + + 11 Feb 2008; Daniel Drake <dsd@gentoo.org> + +gentoo-sources-2.6.23-r8.ebuild: + Add another vmsplice() security fix. This solves all the current vmsplice + exploits that we know about. *gentoo-sources-2.6.24-r1 (10 Feb 2008) diff --git a/sys-kernel/gentoo-sources/gentoo-sources-2.6.23-r8.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-2.6.23-r8.ebuild new file mode 100644 index 000000000000..3955ce641990 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-2.6.23-r8.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-2.6.23-r8.ebuild,v 1.1 2008/02/11 00:04:10 dsd Exp $ + +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="9" +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +HOMEPAGE="http://dev.gentoo.org/~dsd/genpatches" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} |