From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1A2971382C5 for ; Thu, 18 Feb 2021 13:32:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12915E0831; Thu, 18 Feb 2021 13:32:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D25CE0831 for ; Thu, 18 Feb 2021 13:32:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 097CC340970 for ; Thu, 18 Feb 2021 13:32:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CBA0487 for ; Thu, 18 Feb 2021 13:32:18 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1613619817.c8a6845ff99a1fe5928d331375242f07bf49fac1.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_configkernel.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: c8a6845ff99a1fe5928d331375242f07bf49fac1 X-VCS-Branch: master Date: Thu, 18 Feb 2021 13:32:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 24936623-9572-4568-89e0-b4bb407982df X-Archives-Hash: 05d3c2affe0d332c7a02d9cb11567275 commit: c8a6845ff99a1fe5928d331375242f07bf49fac1 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Feb 17 20:52:30 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Feb 18 03:43:37 2021 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c8a6845f gen_configkernel.sh: config_kernel(): don't set CONFIG_MICROCODE_OLD_INTERFACE for $KV > 4.3 anymore sys-apps/microcode-ctl which uses this interface was already removed from repository in 2018. Signed-off-by: Thomas Deutschmann gentoo.org> gen_configkernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_configkernel.sh b/gen_configkernel.sh index 56b5665..00eab73 100755 --- a/gen_configkernel.sh +++ b/gen_configkernel.sh @@ -978,7 +978,7 @@ config_kernel() { print_info 2 "$(get_indent 1)>> Ensure that required kernel options for early microcode loading support are set ..." kconfigs_microcode+=( 'CONFIG_MICROCODE' ) - kconfigs_microcode+=( 'CONFIG_MICROCODE_OLD_INTERFACE' ) + [ ${KV_NUMERIC} -le 4003 ] && kconfigs_microcode+=( 'CONFIG_MICROCODE_OLD_INTERFACE' ) [ ${KV_NUMERIC} -le 4003 ] && kconfigs_microcode+=( 'CONFIG_MICROCODE_EARLY' ) # Intel