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 AA0DB1580B9 for ; Tue, 24 Aug 2021 19:56:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E75D2E08E0; Tue, 24 Aug 2021 19:56:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CACD3E08E0 for ; Tue, 24 Aug 2021 19:56:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B7D0C335D46 for ; Tue, 24 Aug 2021 19:56:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15A4D25 for ; Tue, 24 Aug 2021 19:56:41 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1629834982.e0e46bc488f191689b31fbb89901c740a31de9ec.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:5.13 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 4567_distro-Gentoo-Kconfig.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: e0e46bc488f191689b31fbb89901c740a31de9ec X-VCS-Branch: 5.13 Date: Tue, 24 Aug 2021 19:56:41 +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: ec1a9a9b-1930-49b8-98ed-e4ff6aea41d6 X-Archives-Hash: 744753873327ffd1714d4a75f5633e82 commit: e0e46bc488f191689b31fbb89901c740a31de9ec Author: Mike Pagano gentoo org> AuthorDate: Tue Aug 24 19:53:28 2021 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Aug 24 19:56:22 2021 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=e0e46bc4 Add CONFIG option to print firmware info Signed-off-by: Mike Pagano gentoo.org> 4567_distro-Gentoo-Kconfig.patch | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch index 864f86a..fd8f955 100644 --- a/4567_distro-Gentoo-Kconfig.patch +++ b/4567_distro-Gentoo-Kconfig.patch @@ -6,9 +6,9 @@ source "Documentation/Kconfig" + +source "distro/Kconfig" ---- /dev/null 2021-08-09 07:18:54.945580285 -0400 -+++ b/distro/Kconfig 2021-08-09 19:15:34.418191114 -0400 -@@ -0,0 +1,267 @@ +--- /dev/null 2021-08-24 15:34:24.700702871 -0400 ++++ b/distro/Kconfig 2021-08-24 15:49:16.965525424 -0400 +@@ -0,0 +1,281 @@ +menu "Gentoo Linux" + +config GENTOO_LINUX @@ -275,6 +275,20 @@ + select CPU_SW_DOMAIN_PAN + +endif ++ ++config GENTOO_PRINT_FIRMWARE_INFO ++ bool "Print firmware information that the kernel attempts to load" ++ ++ depends on GENTOO_LINUX ++ default n ++ ++ help ++ Enable this option to print information about firmware that the kernel ++ is attempting to load. This information can be accessible via the ++ dmesg command-line utility ++ ++ See the settings that become available for more details and fine-tuning. ++ +endmenu diff --git a/security/Kconfig b/security/Kconfig index 7561f6f99..01f0bf73f 100644