diff options
author | Mike Pagano <mpagano@gentoo.org> | 2021-08-24 15:53:28 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2021-08-24 15:53:28 -0400 |
commit | d3ba9963dbecff37c7b0d46913519cc22bc877c0 (patch) | |
tree | e21cfed6fed05584e1457d04615b62efbeb6443a | |
parent | Fix GCC_PLUGINS depends (diff) | |
download | linux-patches-d3ba9963dbecff37c7b0d46913519cc22bc877c0.tar.gz linux-patches-d3ba9963dbecff37c7b0d46913519cc22bc877c0.tar.bz2 linux-patches-d3ba9963dbecff37c7b0d46913519cc22bc877c0.zip |
Add CONFIG option to print firmware info
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
-rw-r--r-- | 4567_distro-Gentoo-Kconfig.patch | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch index 864f86a0..fd8f9557 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 |