diff options
author | 2003-04-02 00:16:34 +0000 | |
---|---|---|
committer | 2003-04-02 00:16:34 +0000 | |
commit | 78172468df48321f34b9c1f68e240dc348f8ac08 (patch) | |
tree | af6e98afdf26e51ae70470721432a57700cd23c5 /sys-kernel/sparc-sources | |
parent | set ppc (diff) | |
download | gentoo-2-78172468df48321f34b9c1f68e240dc348f8ac08.tar.gz gentoo-2-78172468df48321f34b9c1f68e240dc348f8ac08.tar.bz2 gentoo-2-78172468df48321f34b9c1f68e240dc348f8ac08.zip |
Switched from a U1_HME_FIX variable to a local use flag
Diffstat (limited to 'sys-kernel/sparc-sources')
-rw-r--r-- | sys-kernel/sparc-sources/ChangeLog | 6 | ||||
-rw-r--r-- | sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sys-kernel/sparc-sources/ChangeLog b/sys-kernel/sparc-sources/ChangeLog index 224819ddc1b1..7c75bdf37735 100644 --- a/sys-kernel/sparc-sources/ChangeLog +++ b/sys-kernel/sparc-sources/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for sys-kernel/sparc-sources # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/ChangeLog,v 1.20 2003/03/30 18:29:41 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/ChangeLog,v 1.21 2003/04/02 00:16:34 joker Exp $ *sparc-sources-2.4.20-r7 (30 Mar 2003) + 02 Apr 2003; Christian Birchinger <joker@gentoo.org> + sparc-sources-2.4.20-r7.ebuild: + Switched from a U1_HME_FIX variable to a local use flag + 30 Mar 2003; Christian Birchinger <joker@gentoo.org> sparc-sources-2.4.20-r7.ebuild files/digest-sparc-sources-2.4.20-r7 : New Grsecurity 1.9.9e version included which has sparc64 fixes and diff --git a/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild b/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild index 4583c79ec363..2ed0679474e6 100644 --- a/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild +++ b/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild,v 1.1 2003/03/30 18:29:41 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/sparc-sources/sparc-sources-2.4.20-r7.ebuild,v 1.2 2003/04/02 00:16:34 joker Exp $ -IUSE="build" +IUSE="build ultra1" # OKV=original kernel version, KV=patched kernel version. They can be the # same. @@ -45,7 +45,7 @@ src_unpack() { kernel_src_unpack # Patch the HME driver only on Ultra1 machines. - [ -n "${U1_HME_FIX}" ] && epatch ${FILESDIR}/U1-hme-lockup.patch + use ultra1 && epatch ${FILESDIR}/U1-hme-lockup.patch } pkg_postinst() { @@ -57,7 +57,7 @@ pkg_postinst() { einfo "For users with an Enterprise model Ultra 1 using the HME network interface," einfo "please emerge the kernel using the following command:" einfo - einfo "U1_HME_FIX=y emerge sparc-sources" + einfo "USE=ultra1 emerge sparc-sources" einfo fi } |