diff options
author | Mike Pagano <mpagano@gentoo.org> | 2014-03-31 12:43:45 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2014-03-31 12:43:45 +0000 |
commit | 67b00da52896a0ce044890404208546a186f0dc2 (patch) | |
tree | 3cb63bb23687a0db38f3b452f005dc7d7f069cf0 /sys-kernel/gentoo-sources | |
parent | sci-physics/lammps-20140320: Version bump. (diff) | |
download | gentoo-2-67b00da52896a0ce044890404208546a186f0dc2.tar.gz gentoo-2-67b00da52896a0ce044890404208546a186f0dc2.tar.bz2 gentoo-2-67b00da52896a0ce044890404208546a186f0dc2.zip |
Support for namespace user.pax.* on tmpfs. Enable mic mute led in thinkpads. Zero copy for infiniband psm userspace driver. Disable Windows 8 compatibility for some Lenovo ThinkPads. Ensure that /dev/root doesn't appear in /proc/mounts when bootint without an initramfs. Do not lock when UMH is waiting on current thread spawned by linuxrc. Bootsplash successor by Michal Januszewski ported by Jeremy. Support for Pogoplug e02 (bug #460350), adjusted to be opt-in by TomWij. Add Gentoo Linux support config settings and defaults.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B576E4E3)
Diffstat (limited to 'sys-kernel/gentoo-sources')
-rw-r--r-- | sys-kernel/gentoo-sources/ChangeLog | 14 | ||||
-rw-r--r-- | sys-kernel/gentoo-sources/gentoo-sources-3.14.0.ebuild | 29 |
2 files changed, 42 insertions, 1 deletions
diff --git a/sys-kernel/gentoo-sources/ChangeLog b/sys-kernel/gentoo-sources/ChangeLog index 4d5f2db3c59d..5074b4a23c14 100644 --- a/sys-kernel/gentoo-sources/ChangeLog +++ b/sys-kernel/gentoo-sources/ChangeLog @@ -1,6 +1,18 @@ # ChangeLog for sys-kernel/gentoo-sources # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1285 2014/03/26 23:53:41 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/ChangeLog,v 1.1286 2014/03/31 12:43:45 mpagano Exp $ + +*gentoo-sources-3.14.0 (31 Mar 2014) + + 31 Mar 2014; Mike Pagano <mpagano@gentoo.org> +gentoo-sources-3.14.0.ebuild: + Support for namespace user.pax.* on tmpfs. Enable mic mute led in thinkpads. + Zero copy for infiniband psm userspace driver. Disable Windows 8 + compatibility for some Lenovo ThinkPads. Ensure that /dev/root doesn't appear + in /proc/mounts when bootint without an initramfs. Do not lock when UMH is + waiting on current thread spawned by linuxrc. Bootsplash successor by Michal + Januszewski ported by Jeremy. Support for Pogoplug e02 (bug #460350), + adjusted to be opt-in by TomWij. Add Gentoo Linux support config settings and + defaults. *gentoo-sources-3.12.15 (26 Mar 2014) diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.14.0.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.14.0.ebuild new file mode 100644 index 000000000000..76285f5460a4 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.14.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.0.ebuild,v 1.1 2014/03/31 12:43:45 mpagano Exp $ + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="1" +K_DEBLOB_AVAILABLE="0" +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" +IUSE="" + +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}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} |