blob: fd466b73e8fba5d1601ed20b76ad0257e2e7b7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-headers/linux-headers-2.6.11-r2.ebuild,v 1.24 2006/01/27 00:29:42 vapier Exp $
ETYPE="headers"
H_SUPPORTEDARCH="alpha amd64 arm bfin cris hppa m68k ia64 ppc ppc64 s390 sh sparc x86"
inherit eutils kernel-2
detect_version
PATCHES_V='5'
SRC_URI="${KERNEL_URI} mirror://gentoo/linux-2.6.11-m68k-headers.patch.bz2
mirror://gentoo/linux-2.6.12.1-blackfin.patch.bz2
http://dev.gentoo.org/~plasmaroo/patches/kernel/gentoo-headers/gentoo-headers-${PV}-${PATCHES_V}.tar.bz2"
KEYWORDS="-* alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh ~sparc x86"
DEPEND="ppc? ( gcc64? ( sys-devel/gcc-powerpc64 ) )
sparc? ( gcc64? ( sys-devel/gcc-sparc64 ) )"
UNIPATCH_LIST="${DISTDIR}/gentoo-headers-${PV}-${PATCHES_V}.tar.bz2
${DISTDIR}/linux-2.6.12.1-blackfin.patch.bz2"
kernel-2_hook_premake() {
# cris is slightly incomplete so lets fake it enough to get headers
mkdir -p arch/cris/boot
touch arch/cris/boot/Makefile
}
src_unpack() {
kernel-2_src_unpack
epatch "${FILESDIR}"/2.6.11-s390-cflags-update.patch
# This should always be used but it has a bunch of hunks which
# apply to include/linux/ which i'm unsure of so only use with
# m68k for now (dont want to break other arches)
[[ $(tc-arch) == "m68k" ]] && epatch "${DISTDIR}"/linux-2.6.11-m68k-headers.patch.bz2
# Fixes ... all the mv magic is to keep sed from dumping
# ugly warnings about how it can't work on a directory.
cd "${S}"/include
mv asm-ia64/sn asm-ppc64/iSeries .
headers___fix asm-ia64/*
mv sn asm-ia64/
headers___fix asm-ppc64/*
mv iSeries asm-ppc64/
headers___fix asm-ppc64/iSeries/*
headers___fix linux/{ethtool,jiffies}.h
# Apply patch for spinlick.h only with 32bit userland on ppc64.
# Will add to the main patchball when plasmaroo returns.
if use ppc && [[ ${PROFILE_ARCH} == "ppc64" ]]; then
epatch ${FILESDIR}/2.6.11-ppc64-32ul-spinlock.patch
fi
}
|