[OS-BUILD PATCH 0/0] common: build TRUSTED_KEYS in everywhere
by pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1284
NOTE: Truncated patchset due to missing public @redhat.com email
address on your GitLab profile at https://gitlab.com/-/profile.
Once that is fixed, close and reopen the merge request to
retrigger sending the emails.
We want the TRUSTED_KEYS support built in everywhere, it's currently
just built in for x86/power on ark. We need it built in for aarch64
as well, and it should be the same on Fedora.
Signed-off-by: Peter Robinson <pbrobinson(a)redhat.com>
---
redhat/configs/ark/generic/powerpc/CONFIG_TRUSTED_KEYS | 1 -
redhat/configs/ark/generic/x86/x86_64/CONFIG_TRUSTED_KEYS | 1 -
redhat/configs/ark/generic/CONFIG_TEE => redhat/configs/common/generic/CONFIG_TEE | 0
redhat/configs/common/generic/CONFIG_TRUSTED_KEYS | 2 +-
redhat/configs/fedora/generic/arm/CONFIG_TEE | 1 -
redhat/configs/fedora/generic/CONFIG_TEE | 1 -
6 files changed, 1 insertions(+), 5 deletions(-)
9 months, 3 weeks
[OS-BUILD PATCHv2] redhat/configs: enable KEXEC_SIG which is already
enabled
in RHEL8 for s390x and x86_64
by Coiby Xu (via Email Bridge)
From: Coiby Xu <coxu(a)redhat.com>
redhat/configs: enable KEXEC_SIG which is already enabled in RHEL8 for s390x and x86_64
Enable KEXEC_SIG for s390x and x86_64 which is already enabled in RHEL8.
Note when building .src.rpm, process_configs.sh would error on unset config
options. So CONFIG_KEXEC_SIG_FORCE files are added as well.
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1976835
Signed-off-by: Coiby Xu <coxu(a)redhat.com>
diff --git a/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG b/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG
@@ -0,0 +1 @@
+CONFIG_KEXEC_SIG=y
diff --git a/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG_FORCE b/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG_FORCE
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/common/generic/s390x/CONFIG_KEXEC_SIG_FORCE
@@ -0,0 +1 @@
+# CONFIG_KEXEC_SIG_FORCE is not set
diff --git a/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG b/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG
@@ -0,0 +1 @@
+CONFIG_KEXEC_SIG=y
diff --git a/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG_FORCE b/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG_FORCE
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/common/generic/x86/CONFIG_KEXEC_SIG_FORCE
@@ -0,0 +1 @@
+# CONFIG_KEXEC_SIG_FORCE is not set
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1227
11 months
[OS-BUILD PATCHv2] netfilter: Add deprecation notices for xtables
by Phil Sutter (via Email Bridge)
From: Phil Sutter <psutter(a)redhat.com>
netfilter: Add deprecation notices for xtables
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1945179
Upstream Status: RHEL-only
Upon loading legacy xtables table modules or the nft compat module,
print a warning suggesting nftables.
Signed-off-by: Phil Sutter <psutter(a)redhat.com>
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c
index blahblah..blahblah 100644
--- a/net/bridge/netfilter/ebtables.c
+++ b/net/bridge/netfilter/ebtables.c
@@ -2484,6 +2484,9 @@ static int __init ebtables_init(void)
{
int ret;
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+
ret = xt_register_target(&ebt_standard_target);
if (ret < 0)
return ret;
diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c
index blahblah..blahblah 100644
--- a/net/ipv4/netfilter/arp_tables.c
+++ b/net/ipv4/netfilter/arp_tables.c
@@ -1623,6 +1623,9 @@ static int __init arp_tables_init(void)
{
int ret;
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+
ret = register_pernet_subsys(&arp_tables_net_ops);
if (ret < 0)
goto err1;
diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c
index blahblah..blahblah 100644
--- a/net/ipv4/netfilter/ip_tables.c
+++ b/net/ipv4/netfilter/ip_tables.c
@@ -1902,6 +1902,9 @@ static int __init ip_tables_init(void)
{
int ret;
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+
ret = register_pernet_subsys(&ip_tables_net_ops);
if (ret < 0)
goto err1;
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
index blahblah..blahblah 100644
--- a/net/ipv6/netfilter/ip6_tables.c
+++ b/net/ipv6/netfilter/ip6_tables.c
@@ -1909,6 +1909,9 @@ static int __init ip6_tables_init(void)
{
int ret;
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+
ret = register_pernet_subsys(&ip6_tables_net_ops);
if (ret < 0)
goto err1;
diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c
index blahblah..blahblah 100644
--- a/net/netfilter/ipset/ip_set_core.c
+++ b/net/netfilter/ipset/ip_set_core.c
@@ -6,6 +6,8 @@
/* Kernel module for IP set management */
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
@@ -2362,8 +2364,12 @@ static struct pernet_operations ip_set_net_ops = {
static int __init
ip_set_init(void)
{
- int ret = register_pernet_subsys(&ip_set_net_ops);
+ int ret;
+
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+ ret = register_pernet_subsys(&ip_set_net_ops);
if (ret) {
pr_err("ip_set: cannot register pernet_subsys.\n");
return ret;
diff --git a/net/netfilter/nft_compat.c b/net/netfilter/nft_compat.c
index blahblah..blahblah 100644
--- a/net/netfilter/nft_compat.c
+++ b/net/netfilter/nft_compat.c
@@ -5,6 +5,8 @@
* This software has been sponsored by Sophos Astaro <http://www.sophos.com>
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
@@ -882,6 +884,9 @@ static int __init nft_compat_module_init(void)
{
int ret;
+ pr_warn_ratelimited("This module is deprecated in Red Hat Enterprise Linux,\n"
+ "please use nftables instead (https://red.ht/nft_your_tables)\n");
+
ret = nft_register_expr(&nft_match_type);
if (ret < 0)
return ret;
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1226
11 months, 2 weeks
[OS-BUILD PATCH 0/0] [redhat] New configs in sound/soc
by CKI Gitlab (via Email Bridge)
From: CKI Gitlab on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1220
NOTE: Truncated patchset due to missing public @redhat.com email
address on your GitLab profile at https://gitlab.com/-/profile.
Once that is fixed, close and reopen the merge request to
retrigger sending the emails.
Hi,
As part of the ongoing rebase effort, the following configuration
options need to be reviewed.
As a reminder, the ARK configuration flow involves moving unreviewed
configuration options from the pending directory to the ark directory.
In the diff below, options are removed from the pending directory and
added to the ark hierarchy. The final options that need to be ACKed
are the files that are being added to the ark hierarchy.
If the value for a file that is added should be changed, please reply
with a better option.
CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH:
This adds support for ASoC machine driver for SOF platforms
with cs42l42 codec.
Say Y if you have such a device.
If unsure select "N".
Symbol: SND_SOC_INTEL_SOF_CS42L42_MACH [=n]
Type : tristate
Defined at sound/soc/intel/boards/Kconfig:483
Prompt: SOF with cs42l42 codec in I2S Mode
Depends on: SOUND [=m] && !UML && SND [=m] && SND_SOC [=m] &&
SND_SOC_INTEL_MACH [=y] && (SND_SOC_SOF_HDA_LINK [=y] || SND_SOC_SOF_BAYTRAIL
[=m]) && I2C [=y] && ACPI [=y] && SND_HDA_CODEC_HDMI [=m] &&
SND_SOC_SOF_HDA_AUDIO_CODEC [=y] && (MFD_INTEL_LPSS [=y] || COMPILE_TEST [=n])
Location:
-> Device Drivers
-> Sound card support (SOUND [=m])
-> Advanced Linux Sound Architecture (SND [=m])
-> ALSA for SoC audio support (SND_SOC [=m])
-> Intel Machine drivers (SND_SOC_INTEL_MACH [=y])
Selects: SND_SOC_CS42L42 [=n] && SND_SOC_MAX98357A [=m] && SND_SOC_DMIC [=m]
&& SND_SOC_HDAC_HDMI [=m] && SND_SOC_INTEL_HDA_DSP_COMMON [=m] &&
SND_SOC_INTEL_SOF_MAXIM_COMMON [=m]
---
CONFIG_SND_SOC_TFA989X:
Enable support for NXP (now Goodix) TFA989X (TFA1 family) speaker
amplifiers, e.g. TFA9895.
Note that the driver currently bypasses the built-in "CoolFlux DSP"
and does not support (hardware) volume control.
Symbol: SND_SOC_TFA989X [=n]
Type : tristate
Defined at sound/soc/codecs/Kconfig:1420
Prompt: NXP/Goodix TFA989X (TFA1) amplifiers
Depends on: SOUND [=m] && !UML && SND [=m] && SND_SOC [=m] && I2C [=y]
Location:
-> Device Drivers
-> Sound card support (SOUND [=m])
-> Advanced Linux Sound Architecture (SND [=m])
-> ALSA for SoC audio support (SND_SOC [=m])
-> CODEC drivers
Selects: REGMAP_I2C [=m]
Implied by [n]:
- SND_SOC_ALL_CODECS [=n] && SOUND [=m] && !UML && SND [=m] && SND_SOC [=m]
&& COMPILE_TEST [=n]
---
Cc: Jaroslav Kysela <jkysela(a)redhat.com>
Signed-off-by: Fedora Kernel Team <kernel-team(a)fedoraproject.org>
---
redhat/configs/common/generic/CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH | 1 +
redhat/configs/common/generic/CONFIG_SND_SOC_TFA989X | 1 +
redhat/configs/pending-common/generic/CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH | 23 ---------
redhat/configs/pending-common/generic/CONFIG_SND_SOC_TFA989X | 25 ----------
4 files changed, 2 insertions(+), 48 deletions(-)
12 months
[OS-BUILD PATCHv2 0/0] [redhat] New configs in drivers/scsi
by CKI Gitlab (via Email Bridge)
From: CKI Gitlab on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1218
NOTE: Truncated patchset due to missing public @redhat.com email
address on your GitLab profile at https://gitlab.com/-/profile.
Once that is fixed, close and reopen the merge request to
retrigger sending the emails.
Hi,
As part of the ongoing rebase effort, the following configuration
options need to be reviewed.
As a reminder, the ARK configuration flow involves moving unreviewed
configuration options from the pending directory to the ark directory.
In the diff below, options are removed from the pending directory and
added to the ark hierarchy. The final options that need to be ACKed
are the files that are being added to the ark hierarchy.
If the value for a file that is added should be changed, please reply
with a better option.
CONFIG_FC_APPID:
If you say Y here, it enables the support to track
FC I/O traffic over fabric. It enables the Fabric and the
storage targets to identify, monitor, and handle FC traffic
based on VM tags by inserting application specific
identification into the FC frame.
Symbol: FC_APPID [=y]
Type : bool
Defined at drivers/scsi/Kconfig:238
Prompt: Enable support to track FC I/O Traffic
Depends on: BLOCK [=y] && BLK_CGROUP [=y] && SCSI [=y]
Location:
-> Device Drivers
-> SCSI device support
-> SCSI Transports
Selects: BLK_CGROUP_FC_APPID [=y]
---
CONFIG_SCSI_EFCT:
The efct driver provides enhanced SCSI Target Mode
support for specific SLI-4 adapters.
Symbol: SCSI_EFCT [=n]
Type : tristate
Defined at drivers/scsi/elx/Kconfig:1
Prompt: Emulex Fibre Channel Target
Depends on: SCSI_LOWLEVEL [=y] && PCI [=y] && SCSI [=y] && TARGET_CORE [=m]
&& SCSI_FC_ATTRS [=m]
Location:
-> Device Drivers
-> SCSI device support
-> SCSI low-level drivers (SCSI_LOWLEVEL [=y])
Selects: CRC_T10DIF [=y]
---
CONFIG_SCSI_MPI3MR:
MPI3 based Storage & RAID Controllers Driver.
Symbol: SCSI_MPI3MR [=n]
Type : tristate
Defined at drivers/scsi/mpi3mr/Kconfig:3
Prompt: Broadcom MPI3 Storage Controller Device Driver
Depends on: SCSI_LOWLEVEL [=y] && PCI [=y] && SCSI [=y]
Location:
-> Device Drivers
-> SCSI device support
-> SCSI low-level drivers (SCSI_LOWLEVEL [=y])
---
Cc: "Ewan D. Milne" <emilne(a)redhat.com>
Cc: Tomas Henzl <thenzl(a)redhat.com>
Cc: Maurizio Lombardi <mlombard(a)redhat.com>
Cc: Chris Leech <cleech(a)redhat.com>
Signed-off-by: Fedora Kernel Team <kernel-team(a)fedoraproject.org>
---
redhat/configs/common/generic/CONFIG_FC_APPID | 1 +
redhat/configs/common/generic/CONFIG_SCSI_EFCT | 1 +
redhat/configs/common/generic/CONFIG_SCSI_MPI3MR | 1 +
redhat/configs/pending-common/generic/CONFIG_FC_APPID | 22 ----------------
redhat/configs/pending-common/generic/CONFIG_SCSI_EFCT | 19 -------------
redhat/configs/pending-common/generic/CONFIG_SCSI_MPI3MR | 17 ------------
6 files changed, 3 insertions(+), 58 deletions(-)
1 year
fedpkg clone -a kernel failed
by Sampson Fung
I am trying to build custom kernel on Fedora-34 following this quick-doc
https://docs.fedoraproject.org/en-US/quick-docs/kernel/build-custom-kernel/
I got error:
# fedpkg clone -a kernel
Cloning into 'kernel'...
remote: Enumerating objects: 2656, done.
remote: Counting objects: 100% (2656/2656), done.
remote: Compressing objects: 100% (926/926), done.
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
Could not execute clone: Failed to execute command.
This is my first time trying to do that.
Please help.
1 year
[OS-BUILD PATCH 0/0] [redhat] New configs in net/netfilter
by CKI Gitlab (via Email Bridge)
From: CKI Gitlab on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1209
NOTE: Truncated patchset due to missing public @redhat.com email
address on your GitLab profile at https://gitlab.com/-/profile.
Once that is fixed, close and reopen the merge request to
retrigger sending the emails.
Hi,
As part of the ongoing rebase effort, the following configuration
options need to be reviewed.
As a reminder, the ARK configuration flow involves moving unreviewed
configuration options from the pending directory to the ark directory.
In the diff below, options are removed from the pending directory and
added to the ark hierarchy. The final options that need to be ACKed
are the files that are being added to the ark hierarchy.
If the value for a file that is added should be changed, please reply
with a better option.
CONFIG_NETFILTER_NETLINK_HOOK:
If this option is enabled, the kernel will include support
to list the base netfilter hooks via NFNETLINK.
This is helpful for debugging.
Symbol: NETFILTER_NETLINK_HOOK [=n]
Type : tristate
Defined at net/netfilter/Kconfig:22
Prompt: Netfilter base hook dump support
Depends on: NET [=y] && INET [=y] && NETFILTER [=y] && NETFILTER_ADVANCED
[=y] && NF_TABLES [=m]
Location:
-> Networking support (NET [=y])
-> Networking options
-> Network packet filtering framework (Netfilter) (NETFILTER [=y])
-> Core Netfilter Configuration
Selects: NETFILTER_NETLINK [=m]
---
Cc: Florian Westphal <fwestpha(a)redhat.com>
Cc: Jiri Benc <jbenc(a)redhat.com>
Cc: Marcelo Leitner <mleitner(a)redhat.com>
Cc: Antoine Tenart <atenart(a)redhat.com>
Cc: Balazs Nemeth <bnemeth(a)redhat.com>
Cc: Davide Caratti <dcaratti(a)redhat.com>
Cc: Eric Garver <egarver(a)redhat.com>
Cc: Flavio Leitner <fbl(a)redhat.com>
Cc: Guillaume Nault <gnault(a)redhat.com>
Cc: Hangbin Liu <haliu(a)redhat.com>
Cc: Ivan Vecera <ivecera(a)redhat.com>
Cc: Jarod Wilson <jarod(a)redhat.com>
Cc: Lorenzo Bianconi <lorenzo.bianconi(a)redhat.com>
Cc: Paolo Abeni <pabeni(a)redhat.com>
Cc: Phil Sutter <psutter(a)redhat.com>
Cc: Sabrina Dubroca <sdubroca(a)redhat.com>
Cc: Stefano Brivio <sbrivio(a)redhat.com>
Cc: Xin Long <lxin(a)redhat.com>
Signed-off-by: Fedora Kernel Team <kernel-team(a)fedoraproject.org>
---
redhat/configs/common/generic/CONFIG_NETFILTER_NETLINK_HOOK | 1 +
redhat/configs/pending-common/generic/CONFIG_NETFILTER_NETLINK_HOOK | 21 ----------
2 files changed, 1 insertions(+), 21 deletions(-)
1 year
Rawhide non-debug kernel is debug-kernel config ?
by Hans de Goede
Hi All,
Every now and then I sync the .config for the kernels which I build locally
with the Fedora kernel's .config .
After downloading kernel-core-5.14.0-0.rc3.20210728git7d549995d4e0.31.fc35.x86_64.rpm
and extracting the /lib/modules/5..../config file I noticed that all the debug
options seem to be enabled.
AFAIK those should only be enabled for the kernel-debug-core variant ?
So this seems to be a bug.
Regards,
Hans
1 year
[OS-BUILD PATCH] redhat: add gating configuration for centos
stream/rhel9
by Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski <herton(a)redhat.com>
redhat: add gating configuration for centos stream/rhel9
Right now when we do the dist-git sync, it overrides/deletes everything
which is not on the src.rpm, which might delete any gating configuration
on dist-git. Make sure we always copy the gating configuration for
centos/rhel9. This might need some tweak later if Fedora or future RHEL
uses the same gating file but with different config.
Signed-off-by: Herton R. Krzesinski <herton(a)redhat.com>
diff --git a/redhat/Makefile b/redhat/Makefile
index blahblah..blahblah 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -260,6 +260,7 @@ sources-rh: $(TARBALL) generate-testpatch-tmp setup-source dist-configs-check
keys/rhel*.x509 \
kabi/check-kabi \
configs/$(PACKAGE_NAME)-*.config \
+ gating.yaml \
rpminspect.yaml \
update_scripts.sh \
kvm_stat.logrotate \
diff --git a/redhat/gating.yaml b/redhat/gating.yaml
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/gating.yaml
@@ -0,0 +1,9 @@
+--- !Policy
+product_versions:
+ - rhel-9
+decision_context: osci_compose_gate
+rules:
+ - !PassingTestCaseRule {test_case_name: cki.tier1-aarch64.functional}
+ - !PassingTestCaseRule {test_case_name: cki.tier1-ppc64le.functional}
+ - !PassingTestCaseRule {test_case_name: cki.tier1-s390x.functional}
+ - !PassingTestCaseRule {test_case_name: cki.tier1-x86_64.functional}
diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100755
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -821,6 +821,7 @@ Source3003: Patchlist.changelog
Source4000: README.rst
Source4001: rpminspect.yaml
+Source4002: gating.yaml
## Patches needed for building this package
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1282
1 year
[OS-BUILD PATCHv2] [redhat] Enable CONFIG_RANDOM_TRUST_CPU for all
the arches
by Vladis Dronov (via Email Bridge)
From: Vladis Dronov <vdronov(a)redhat.com>
[redhat] Enable CONFIG_RANDOM_TRUST_CPU for all the arches
Many modern cloud instance types have hardware with RDRAND, but the RHEL-9
still do not use it. Enable CONFIG_RANDOM_TRUST_CPU the same way as in the
RHEL-8 and Fedora and add ARM too.
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1976877
Signed-off-by: Vladis Dronov <vdronov(a)redhat.com>
diff --git a/redhat/configs/common/generic/CONFIG_RANDOM_TRUST_CPU b/redhat/configs/common/generic/CONFIG_RANDOM_TRUST_CPU
index blahblah..blahblah 100644
--- a/redhat/configs/common/generic/CONFIG_RANDOM_TRUST_CPU
+++ b/redhat/configs/common/generic/CONFIG_RANDOM_TRUST_CPU
@@ -1 +1 @@
-# CONFIG_RANDOM_TRUST_CPU is not set
+CONFIG_RANDOM_TRUST_CPU=y
diff --git a/redhat/configs/fedora/generic/powerpc/CONFIG_RANDOM_TRUST_CPU b/redhat/configs/fedora/generic/powerpc/CONFIG_RANDOM_TRUST_CPU
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/fedora/generic/powerpc/CONFIG_RANDOM_TRUST_CPU
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_RANDOM_TRUST_CPU=y
diff --git a/redhat/configs/fedora/generic/s390x/CONFIG_RANDOM_TRUST_CPU b/redhat/configs/fedora/generic/s390x/CONFIG_RANDOM_TRUST_CPU
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/fedora/generic/s390x/CONFIG_RANDOM_TRUST_CPU
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_RANDOM_TRUST_CPU=y
diff --git a/redhat/configs/fedora/generic/x86/CONFIG_RANDOM_TRUST_CPU b/redhat/configs/fedora/generic/x86/CONFIG_RANDOM_TRUST_CPU
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/fedora/generic/x86/CONFIG_RANDOM_TRUST_CPU
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_RANDOM_TRUST_CPU=y
--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1287
1 year