diff options
author | 2008-03-23 20:48:13 +0000 | |
---|---|---|
committer | 2008-03-23 20:48:13 +0000 | |
commit | a9ed9e08c78a5e51a56290a6241fceed3ffdf48c (patch) | |
tree | d1044d7c2a6ce1cb284473b50972cdf2517d4ae2 /sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild | |
parent | Sparc stable --- Bug #214324 --- seems to work fine. (diff) | |
download | gentoo-2-a9ed9e08c78a5e51a56290a6241fceed3ffdf48c.tar.gz gentoo-2-a9ed9e08c78a5e51a56290a6241fceed3ffdf48c.tar.bz2 gentoo-2-a9ed9e08c78a5e51a56290a6241fceed3ffdf48c.zip |
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild')
-rw-r--r-- | sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild b/sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild new file mode 100644 index 000000000000..8a9628e7ab89 --- /dev/null +++ b/sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/cell-sources/cell-sources-2.6.24-r1.ebuild,v 1.1 2008/03/23 20:48:13 lu_zero Exp $ + +ETYPE="sources" +IUSE="" +K_WANT_GENPATCHES="base" +K_GENPATCHES_VER="4" +inherit kernel-2 eutils +detect_version +detect_arch + +KEYWORDS="~ppc ~ppc64" +HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/geoff/cell/ps3-linux/" + +DESCRIPTION="Full sources including the cell/ps3 patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +CELL_PATCH="patch-ps3-linux-${PV}-stable.${PR//r}.bz2" +CELLPATCHES_URI="http://www.kernel.org/pub/linux/kernel/people/geoff/cell/ps3-linux/${CELL_PATCH}" + +SRC_URI="${KERNEL_URI} ${ARCH_URI} ${CELLPATCHES_URI} ${GENPATCHES_URI}" + +src_unpack() { + kernel-2_src_unpack + cd ${S} + epatch "${DISTDIR}/${CELL_PATCH}" +} + +pkg_postinst() { + postinst_sources + + echo + + if [ "${ARCH}" = "sparc" ]; then + if [ x"`cat /proc/openprom/name 2>/dev/null`" \ + = x"'SUNW,Ultra-1'" ]; then + einfo "For users with an Enterprise model Ultra 1 using the HME" + einfo "network interface, please emerge the kernel using the" + einfo "following command: USE=ultra1 emerge ${PN}" + fi + fi + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} |