diff options
author | Daniel Drake <dsd@gentoo.org> | 2008-05-03 16:07:34 +0000 |
---|---|---|
committer | Daniel Drake <dsd@gentoo.org> | 2008-05-03 16:07:34 +0000 |
commit | 1b4034641147d80854af1abcc0a07c72a391b48c (patch) | |
tree | 53ebfc24d1b242ebe29dd6f67a78d8b5c2577690 /eclass | |
parent | Stable on x86/amd64 (diff) | |
download | historical-1b4034641147d80854af1abcc0a07c72a391b48c.tar.gz historical-1b4034641147d80854af1abcc0a07c72a391b48c.tar.bz2 historical-1b4034641147d80854af1abcc0a07c72a391b48c.zip |
remove defconfig workaround now that the stable kernel is fixed
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel-2.eclass | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index bd11066290e1..7d42164b939b 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.211 2008/04/28 19:22:44 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.212 2008/05/03 16:07:34 dsd Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -633,18 +633,6 @@ postinst_sources() { # Don't forget to make directory for sysfs [[ ! -d ${ROOT}sys ]] && kernel_is 2 6 && mkdir ${ROOT}sys - # fix for bug #215442 due to the change for x86 to use a - # different file name for the default configuration - if kernel_is ge 2 6 24 && [[ ! -e ${ROOT}/usr/src/linux-${KV_FULL}/.config ]] ; then - case $(tc-arch-kernel) in - x86|x86_64) - einfo "Running make defconfig as a temporary workaround for bug #215442" - cd ${ROOT}/usr/src/linux-${KV_FULL} - make -s defconfig ${xmakeopts} &>/dev/null 2>&1 - ;; - esac - fi - echo elog "If you are upgrading from a previous kernel, you may be interested" elog "in the following documents:" |