blob: 883f0e0a516bc3295e3c2c606bf13882c7f2405a (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/development-sources/development-sources-2.6.5.ebuild,v 1.8 2004/04/27 12:41:01 pvdabeel Exp $
IUSE="ultra1"
K_NOUSENAME="yes"
ETYPE="sources"
SPARC_URI="mirror://gentoo/patches-2.6.5-sparc.tar.bz2"
inherit kernel-2
detect_version
detect_arch
DESCRIPTION="Full sources for the vanilla 2.6 kernel tree"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="${KERNEL_URI} ${ARCH_URI}"
UNIPATCH_LIST="${ARCH_PATCH}"
use ultra1 || UNIPATCH_EXCLUDE="99_U1-hme-lockup"
KEYWORDS="x86 ~sparc ~alpha ~ia64 ppc"
pkg_postinst() {
postinst_sources
ewarn "IMPORTANT:"
ewarn "ptyfs support has now been dropped from devfs and as a"
ewarn "result you are now required to compile this support into"
ewarn "the kernel. You can do so by enabling the following option:"
ewarn " Device Drivers -> Character devices -> Legacy (BSD) PTY Support."
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
if [ "${ARCH}" = "ppc" ]; then
ewarn "BEWARE"
ewarn "If you want power management make sure you have SERIAL_PMACZILOG" ewarn "set to no."
ewarn "You can find the voice in Device Drivers -> Character Devices ->"
ewarn "Serial Drivers -> PowerMac z80c30 ESCC Support"
ewarn "report bugs to lu_zero@gentoo.org"
fi
}
|