blob: 78b9a3234abf7ebe54031cbfd7ec11db0357a04d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-2.4.21.ebuild,v 1.10 2004/04/18 04:10:43 randy Exp $
#OKV=original kernel version, KV=patched kernel version. They can be the same.
ETYPE="sources"
inherit kernel
OKV=2.4.21
KV=2.4.21
EXTRAVERSION=" "
S=${WORKDIR}/linux-${KV}
# What's in this kernel?
# INCLUDED:
# stock 2.4.21 kernel sources
DESCRIPTION="Full sources for the Linux kernel"
SRC_URI="mirror://kernel/linux/kernel/v2.4/linux-${OKV}.tar.bz2"
HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/"
KEYWORDS="x86 ppc sparc alpha amd64 ~s390"
SLOT="${KV}"
src_unpack() {
unpack linux-${OKV}.tar.bz2
cd ${S}
epatch ${FILESDIR}/do_brk_fix.patch || die "failed to patch for do_brk vuln"
kernel_universal_unpack
}
|