diff options
author | Alex Alexander <wired@gentoo.org> | 2010-07-07 08:04:05 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2010-07-07 08:04:05 +0000 |
commit | 76bd059012186b76cdce9528ee1b5dc6a26578fc (patch) | |
tree | effd05ee4dfacea2bd7be2b09f0d4616e39dc6f5 /sys-kernel/zen-sources | |
parent | Removed masking of removed packages (diff) | |
download | gentoo-2-76bd059012186b76cdce9528ee1b5dc6a26578fc.tar.gz gentoo-2-76bd059012186b76cdce9528ee1b5dc6a26578fc.tar.bz2 gentoo-2-76bd059012186b76cdce9528ee1b5dc6a26578fc.zip |
zen-sources: added optional bfq patch
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sys-kernel/zen-sources')
-rw-r--r-- | sys-kernel/zen-sources/ChangeLog | 6 | ||||
-rw-r--r-- | sys-kernel/zen-sources/metadata.xml | 1 | ||||
-rw-r--r-- | sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild | 16 |
3 files changed, 19 insertions, 4 deletions
diff --git a/sys-kernel/zen-sources/ChangeLog b/sys-kernel/zen-sources/ChangeLog index 5397acc52325..51757a7d17d3 100644 --- a/sys-kernel/zen-sources/ChangeLog +++ b/sys-kernel/zen-sources/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-kernel/zen-sources # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/zen-sources/ChangeLog,v 1.37 2010/06/23 20:40:29 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/zen-sources/ChangeLog,v 1.38 2010/07/07 08:04:05 wired Exp $ + + 07 Jul 2010; Alex Alexander <wired@gentoo.org> + zen-sources-2.6.34_p1.ebuild, metadata.xml: + added optional bfq patch *zen-sources-2.6.34_p1 (23 Jun 2010) diff --git a/sys-kernel/zen-sources/metadata.xml b/sys-kernel/zen-sources/metadata.xml index 4f5d2cfeee27..42265cf31942 100644 --- a/sys-kernel/zen-sources/metadata.xml +++ b/sys-kernel/zen-sources/metadata.xml @@ -11,6 +11,7 @@ <name>Alex Alexander</name> </maintainer> <use> + <flag name="bfq">Make the BFQ IO Scheduler available by applying upstream patches</flag> <flag name="stable">Clone stable git tree</flag> <flag name='deblob'>Remove binary blobs from kernel sources to provide libre license compliance.</flag> </use> diff --git a/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild b/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild index 10e0796ac97d..9b4a777fd2ab 100644 --- a/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild +++ b/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild,v 1.1 2010/06/23 20:40:29 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/zen-sources/zen-sources-2.6.34_p1.ebuild,v 1.2 2010/07/07 08:04:05 wired Exp $ COMPRESSTYPE=".lzma" K_USEPV="yes" @@ -21,10 +21,15 @@ ZEN_KERNEL="${PV/_p[0-9]*}" ZEN_KERNEL="${ZEN_KERNEL/_/-}" ZEN_FILE="${ZEN_KERNEL}-zen${ZEN_PATCHSET}.patch${COMPRESSTYPE}" ZEN_URI="http://downloads.zen-kernel.org/$(get_version_component_range 1-3)/${ZEN_FILE}" -SRC_URI="${KERNEL_URI} ${ZEN_URI}" +ZEN_PATCHES=" + http://algo.ing.unimo.it/people/paolo/disk_sched/patches/2.6.34-zen1/0001-block-prepare-I-O-context-code-for-BFQ.patch + http://algo.ing.unimo.it/people/paolo/disk_sched/patches/2.6.34-zen1/0002-block-add-cgroups-kconfig-and-build-bits-for-BFQ.patch + http://algo.ing.unimo.it/people/paolo/disk_sched/patches/2.6.34-zen1/0003-block-introduce-the-BFQ-I-O-scheduler.patch +" +SRC_URI="${KERNEL_URI} ${ZEN_URI} bfq? ( ${ZEN_PATCHES} )" KEYWORDS="-* ~amd64 ~ppc ~ppc64 ~x86" -IUSE="" +IUSE="bfq" DEPEND="|| ( app-arch/xz-utils app-arch/lzma-utils )" @@ -46,6 +51,11 @@ src_unpack(){ kernel-2_src_unpack cd "${S}" epatch "${DISTDIR}"/"${ZEN_FILE}" + if use bfq; then + for p in ${ZEN_PATCHES}; do + epatch "${DISTDIR}/${p/*\/}" + done + fi } K_EXTRAEINFO="For more info on zen-sources and details on how to report problems, see: \ |