From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QPeHv-0000Eq-57 for garchives@archives.gentoo.org; Thu, 26 May 2011 17:24:00 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 733981C138; Thu, 26 May 2011 17:23:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3ED8C1C138 for ; Thu, 26 May 2011 17:23:51 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 769941B400D for ; Thu, 26 May 2011 17:23:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D9BBA80505 for ; Thu, 26 May 2011 17:23:49 +0000 (UTC) From: "Enrico Tagliavini" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Enrico Tagliavini" Message-ID: Subject: [gentoo-commits] proj/x11:master commit in: x11-drivers/ati-drivers/ X-VCS-Repository: proj/x11 X-VCS-Files: x11-drivers/ati-drivers/ati-drivers-11.5-r1.ebuild X-VCS-Directories: x11-drivers/ati-drivers/ X-VCS-Committer: Enrico X-VCS-Committer-Name: Enrico Tagliavini X-VCS-Revision: fa0f966c7e1d1381e407ba5860618f309b3d49e3 Date: Thu, 26 May 2011 17:23:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ec81d0894fed9e76b8ddd03befa4fdfe commit: fa0f966c7e1d1381e407ba5860618f309b3d49e3 Author: Enrico Tagliavini gmail com> AuthorDate: Thu May 26 17:23:25 2011 +0000 Commit: Enrico Tagliavini gmail com> CommitDate: Thu May 26 17:23:25 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/x11.git;a=3Dc= ommit;h=3Dfa0f966c [ati-drivers] added BKL checks for kernels .37 and .38 --- x11-drivers/ati-drivers/ati-drivers-11.5-r1.ebuild | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/x11-drivers/ati-drivers/ati-drivers-11.5-r1.ebuild b/x11-dri= vers/ati-drivers/ati-drivers-11.5-r1.ebuild index 1a60d2a..7088313 100644 --- a/x11-drivers/ati-drivers/ati-drivers-11.5-r1.ebuild +++ b/x11-drivers/ati-drivers/ati-drivers-11.5-r1.ebuild @@ -200,6 +200,19 @@ _check_kernel_config() { failed=3D1 fi =20 + kernel_is ge 2 6 37 && kernel_is le 2 6 38 && if ! linux_chkconfig_pres= ent BKL ; then + eerror "${P} requires BKL." + eerror "Please enable the Big Kernel Lock:" + eerror "Kernel hacking --->" + eerror " [*] Big Kernel Lock" + eerror "in the kernel config." + eerror "or add" + eerror " CONFIG_BKL=3Dy" + eerror "in /usr/src/linux/.config" + error+=3D" BKL disabled;" + failed=3D1 + fi + [[ ${failed} -ne 0 ]] && die "${error}" } =20