blob: f6fc95b9269e41a89865c9c879db7441365dece7 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/mips-headers/mips-headers-2.6.6.ebuild,v 1.3 2004/06/24 22:58:54 agriffis Exp $
ETYPE="headers"
inherit kernel eutils
OKV=${PV/_/-}
CVSDATE="20040604"
EXTRAVERSION=-mipscvs-${CVSDATE}
COBALTPATCHVER="1.4"
KV="${OKV}${EXTRAVERSION}"
S=${WORKDIR}/linux-${KV}
# What's in this kernel?
# INCLUDED:
# 1) linux sources from kernel.org
# 2) linux-mips.org CVS snapshot diff from 04 Jun 2004
DESCRIPTION="Linux Headers from Linux-Mips CVS, dated ${CVSDATE}"
SRC_URI="mirror://kernel/linux/kernel/v2.6/linux-${OKV}.tar.bz2
mirror://gentoo/mipscvs-${OKV}-${CVSDATE}.diff.bz2"
HOMEPAGE="http://www.linux-mips.org/"
LICENSE="GPL-2"
SLOT="0"
PROVIDE="virtual/os-headers"
KEYWORDS="-*"
src_unpack() {
unpack ${A}
mv ${WORKDIR}/linux-${OKV} ${S}
cd ${S}
# Update the vanilla sources with linux-mips CVS changes
epatch ${WORKDIR}/mipscvs-${OKV}-${CVSDATE}.diff
# Cobalt Patches
if [ "${PROFILE_ARCH}" = "cobalt" ]; then
echo -e ""
einfo ">>> Patching kernel for Cobalt support ..."
for x in ${WORKDIR}/cobalt-patches-26xx-${COBALTPATCHVER}/*.patch; do
epatch ${x}
done
fi
# Do Stuff
kernel_universal_unpack
# User-space patches for various things
epatch ${FILESDIR}/${PN}-2.6.6-appCompat.patch
epatch ${FILESDIR}/${PN}-2.6.3-strict-ansi-fix.patch
epatch ${FILESDIR}/${PN}-2.6.0-sysctl_h-compat.patch
epatch ${FILESDIR}/${PN}-2.6.0-fb.patch
epatch ${FILESDIR}/${PN}-2.6.6-spaces_h-kernel.patch
}
src_compile() {
# Avoid issues w/ ARCH
MY_ARCH=${ARCH}
unset ${ARCH}
# Build the right defconfig
if [ "${PROFILE_ARCH}" = "cobalt" ]; then
make cobalt_defconfig
else
# SGI Machine?
case "$(uname -i)" in
"SGI Indy"|"SGI Indigo2"|"SGI IP22") make ip22_defconfig ;;
"SGI Origin"|"SGI IP27") make ip27_defconfig ;;
# "SGI Octane"|"SGI IP30") make ip30_defconfig ;; # Not available yet
"SGI O2"|"SGI IP32") make ip32_defconfig ;;
esac
fi
# Back to normal
ARCH=${MY_ARCH}
}
src_install() {
# XXX Bug in Kernel.eclass requires this fix for now.
# XXX Remove when kernel.eclass is fixed.
# XXX 2.4 kernels symlink 'asm' to 'asm-${ARCH}' in include/
# XXX 2.6 kernels don't, however. So we fix this here so kernel.eclass can find the include/asm folder
if [ "`KV_to_int ${OKV}`" -ge "`KV_to_int 2.6.0`" ]; then
ln -sf ${S}/include/asm-${ARCH} ${S}/include/asm
fi
# Do normal src_install stuff
kernel_src_install
# If this is 2.5 or 2.6 headers, then we need asm-generic too
if [ "`KV_to_int ${OKV}`" -ge "`KV_to_int 2.6.0`" ]; then
dodir /usr/include/asm-generic
cp -ax ${S}/include/asm-generic/* ${D}/usr/include/asm-generic
fi
}
pkg_postinst() {
kernel_pkg_postinst
einfo "Kernel headers are usually only used when recompiling glibc, as such, following the installation"
einfo "of newer headers, it is advised that you re-merge glibc as follows:"
einfo "emerge glibc"
einfo "Failure to do so will cause glibc to not make use of newer features present in the updated kernel"
einfo "headers."
}
|