[OS-BUILD PATCH] [redhat] move wwan_hwsim to internals rpm

2024-01-18 Thread via Email Bridge
From: Jose Ignacio Tornos Martinez 

[redhat] move wwan_hwsim to internals rpm

wwan_hwsim is useful for testing and was initially included in extra rpm.
Better to move it to internals rpm as with other simulation modules like
mac80211_hwsim.

Signed-off-by: Jose Ignacio Tornos Martinez 

diff --git a/redhat/fedora_files/mod-extra.list.fedora 
b/redhat/fedora_files/mod-extra.list.fedora
index blahblah..blahblah 100644
--- a/redhat/fedora_files/mod-extra.list.fedora
+++ b/redhat/fedora_files/mod-extra.list.fedora
@@ -196,6 +196,5 @@ wanrouter.ko
 warrior.ko
 whci.ko
 wire.ko
-wwan_hwsim.ko
 yam.ko
 zhenhua.ko
diff --git a/redhat/rhel_files/mod-extra.list.rhel 
b/redhat/rhel_files/mod-extra.list.rhel
index blahblah..blahblah 100644
--- a/redhat/rhel_files/mod-extra.list.rhel
+++ b/redhat/rhel_files/mod-extra.list.rhel
@@ -257,7 +257,6 @@ wanrouter.ko
 warrior.ko
 whci.ko
 wire.ko
-wwan_hwsim.ko
 xt_addrtype.ko
 xt_AUDIT.ko
 xt_bpf.ko
diff --git a/redhat/scripts/mod/mod-internal.list 
b/redhat/scripts/mod/mod-internal.list
index blahblah..blahblah 100644
--- a/redhat/scripts/mod/mod-internal.list
+++ b/redhat/scripts/mod/mod-internal.list
@@ -96,3 +96,4 @@ test_sort
 test_vmalloc
 time_test
 torture
+wwan_hwsim

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2893
--
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv2] redhat/Makefile: add missing dependencies on dist-kabi

2024-01-18 Thread via Email Bridge
From: Ondrej Mosnacek 

redhat/Makefile: add missing dependencies on dist-kabi

The recipes for $(KABI_TARBALL) and sources-rh reference the
kabi/kabi-current file, but they don't depend on the target that creates
it (dist-kabi), leading to occasional build failures under parallel
build (make -j). Fix it by adding the missing dependencies.

Signed-off-by: Ondrej Mosnacek 

diff --git a/redhat/Makefile b/redhat/Makefile
index blahblah..blahblah 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -601,7 +601,7 @@ $(TARBALL):
@scripts/create-tarball.sh
 
 .PHONY: $(KABI_TARBALL)
-$(KABI_TARBALL):
+$(KABI_TARBALL): dist-kabi
@(cd kabi && tar -cJf $(KABI_TARBALL) kabi-rhel$(RHEL_MAJOR)* 
kabi-current)
 
 .PHONY: $(KABIDW_TARBALL)
@@ -668,7 +668,7 @@ generate-testpatch-tmp:
":(exclude,top)Makefile.rhelver" \
":(exclude,top)redhat" > $(TESTPATCH).tmp
 
-sources-rh: $(TARBALL) generate-testpatch-tmp setup-source dist-configs-check
+sources-rh: $(TARBALL) generate-testpatch-tmp setup-source dist-kabi 
dist-configs-check
@cp -l $(TARBALL) $(SOURCES)/ || cp $(TARBALL) $(SOURCES)/
@touch $(TESTPATCH)
@diff $(TESTPATCH).tmp $(TESTPATCH) > /dev/null || \

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2892
--
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH] redhat/Makefile: fix race condition when making the KABI tarball

2024-01-18 Thread via Email Bridge
From: Ondrej Mosnacek 

redhat/Makefile: fix race condition when making the KABI tarball

The recipe for $(KABI_TARBALL) references the kabi/kabi-current file,
but it doesn't depend on the target that creates it (dist-kabi), leading
to occasional build failures under parallel build (make -j). Fix it by
making $(KABI_TARBALL) depend on dist-kabi.

Signed-off-by: Ondrej Mosnacek 

diff --git a/redhat/Makefile b/redhat/Makefile
index blahblah..blahblah 100644
--- a/redhat/Makefile
+++ b/redhat/Makefile
@@ -601,7 +601,7 @@ $(TARBALL):
@scripts/create-tarball.sh
 
 .PHONY: $(KABI_TARBALL)
-$(KABI_TARBALL):
+$(KABI_TARBALL): dist-kabi
@(cd kabi && tar -cJf $(KABI_TARBALL) kabi-rhel$(RHEL_MAJOR)* 
kabi-current)
 
 .PHONY: $(KABIDW_TARBALL)

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2892
--
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv2 0/6] secure boot signing updates

2024-01-18 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2849#note_1732719906

I do not, the Fedora signing method is a bit different. More importantly
though, we can't merge this yet. Fedora still needs both signatures while we
wait for the updated shim. I was last told we are a month out or so.
--
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCH] redhat/configs: Remove HOTPLUG_CPU0 configs

2024-01-18 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

redhat/configs: Remove HOTPLUG_CPU0 configs

linux commit e59e74dc48a3 ("x86/topology: Remove CPU0 hotplug option")
removed the code that implements these CONFIGs.  These files can be safely
removed.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/configs/fedora/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0 
b/redhat/configs/fedora/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/fedora/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
diff --git a/redhat/configs/fedora/generic/CONFIG_DEBUG_HOTPLUG_CPU0 
b/redhat/configs/fedora/generic/CONFIG_DEBUG_HOTPLUG_CPU0
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/fedora/generic/CONFIG_DEBUG_HOTPLUG_CPU0
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
diff --git a/redhat/configs/rhel/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0 
b/redhat/configs/rhel/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/CONFIG_BOOTPARAM_HOTPLUG_CPU0
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
diff --git a/redhat/configs/rhel/generic/x86/CONFIG_BOOTPARAM_HOTPLUG_CPU0 
b/redhat/configs/rhel/generic/x86/CONFIG_BOOTPARAM_HOTPLUG_CPU0
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/x86/CONFIG_BOOTPARAM_HOTPLUG_CPU0
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
diff --git a/redhat/configs/rhel/generic/x86/CONFIG_DEBUG_HOTPLUG_CPU0 
b/redhat/configs/rhel/generic/x86/CONFIG_DEBUG_HOTPLUG_CPU0
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/rhel/generic/x86/CONFIG_DEBUG_HOTPLUG_CPU0
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_DEBUG_HOTPLUG_CPU0 is not set

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2891
--
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue