* [PATCH 0/2] Enable building of the devel RPM package from Kbuild
@ 2024-04-17 4:37 Pratham Patel
2024-04-17 4:37 ` [PATCH 1/2] kbuild: allow toggling the `with_devel` RPM macro Pratham Patel
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Pratham Patel @ 2024-04-17 4:37 UTC (permalink / raw)
To: Masahiro Yamada, Nathan Chancellor, Nicolas Schier,
Jonathan Corbet
Cc: linux-kbuild, linux-doc, linux-kernel, Pratham Patel,
thefirst1322
This addresses a minor nit where I want a `-devel` RPM package to be
built when I build a binary RPM package with either `binrpm-pkg`
or `rpm-pkg` target(s).
Pratham Patel (2):
kbuild: allow toggling the `with_devel` RPM macro
docs: kbuild: document KBUILD_RPM_WITH_DEVEL
Documentation/kbuild/kbuild.rst | 6 ++++++
scripts/Makefile.package | 5 ++++-
2 files changed, 10 insertions(+), 1 deletion(-)
--
2.42.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH 1/2] kbuild: allow toggling the `with_devel` RPM macro 2024-04-17 4:37 [PATCH 0/2] Enable building of the devel RPM package from Kbuild Pratham Patel @ 2024-04-17 4:37 ` Pratham Patel 2024-04-17 4:37 ` [PATCH 2/2] docs: kbuild: document KBUILD_RPM_WITH_DEVEL Pratham Patel 2024-04-17 14:48 ` [PATCH 0/2] Enable building of the devel RPM package from Kbuild Nathan Chancellor 2 siblings, 0 replies; 8+ messages in thread From: Pratham Patel @ 2024-04-17 4:37 UTC (permalink / raw) To: Masahiro Yamada, Nathan Chancellor, Nicolas Schier, Jonathan Corbet Cc: linux-kbuild, linux-doc, linux-kernel, Pratham Patel, thefirst1322 As it stands, there is no way to toggle the `with_devel` RPM macro that is defined in the scripts/package/kernel.spec file, without manually building the RPM. Introduce the Kbuild variable KBUILD_RPM_WITH_DEVEL to toggle the `with_devel` macro when building the binary PRM package. The prior default of not building the `-devel` RPM package is preserved. Signed-off-by: Pratham Patel <prathampatel@thefossguy.com> --- scripts/Makefile.package | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/Makefile.package b/scripts/Makefile.package index 38653f3e8108..715e068eae60 100644 --- a/scripts/Makefile.package +++ b/scripts/Makefile.package @@ -47,6 +47,8 @@ $(linux-tarballs): .tmp_HEAD FORCE # rpm-pkg srcrpm-pkg binrpm-pkg # --------------------------------------------------------------------------- +export KBUILD_RPM_WITH_DEVEL ?= 0 + quiet_cmd_mkspec = GEN $@ cmd_mkspec = $(srctree)/scripts/package/mkspec $@ @@ -71,7 +73,8 @@ rpm-pkg srcrpm-pkg binrpm-pkg: rpmbuild/SPECS/kernel.spec +$(strip rpmbuild -b$(build-type) rpmbuild/SPECS/kernel.spec \ --define='_topdir $(abspath rpmbuild)' \ $(if $(filter a b, $(build-type)), \ - --target $(UTS_MACHINE)-linux --build-in-place --noprep --define='_smp_mflags %{nil}' \ + --target $(UTS_MACHINE)-linux --build-in-place --noprep \ + --define='_smp_mflags %{nil}' --define='with_devel $(KBUILD_RPM_WITH_DEVEL)' \ $$(rpm -q rpm >/dev/null 2>&1 || echo --nodeps)) \ $(RPMOPTS)) -- 2.42.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] docs: kbuild: document KBUILD_RPM_WITH_DEVEL 2024-04-17 4:37 [PATCH 0/2] Enable building of the devel RPM package from Kbuild Pratham Patel 2024-04-17 4:37 ` [PATCH 1/2] kbuild: allow toggling the `with_devel` RPM macro Pratham Patel @ 2024-04-17 4:37 ` Pratham Patel 2024-04-17 14:48 ` [PATCH 0/2] Enable building of the devel RPM package from Kbuild Nathan Chancellor 2 siblings, 0 replies; 8+ messages in thread From: Pratham Patel @ 2024-04-17 4:37 UTC (permalink / raw) To: Masahiro Yamada, Nathan Chancellor, Nicolas Schier, Jonathan Corbet Cc: linux-kbuild, linux-doc, linux-kernel, Pratham Patel, thefirst1322 KBUILD_RPM_WITH_DEVEL was added to toggle the `with_devel` RPM macro. Add brief documentation on its usage. Signed-off-by: Pratham Patel <prathampatel@thefossguy.com> --- Documentation/kbuild/kbuild.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Documentation/kbuild/kbuild.rst b/Documentation/kbuild/kbuild.rst index 9c8d1d046ea5..0b7ae268ac67 100644 --- a/Documentation/kbuild/kbuild.rst +++ b/Documentation/kbuild/kbuild.rst @@ -310,6 +310,12 @@ These two variables allow to override the user@host string displayed during boot and in /proc/version. The default value is the output of the commands whoami and host, respectively. +KBUILD_RPM_WITH_DEVEL +--------------------- +This variable dictates weather creating an RPM package also builds a `-devel` +package or not. Set to 1 if you want a `-devel` package. The default value +is 0. + LLVM ---- If this variable is set to 1, Kbuild will use Clang and LLVM utilities instead -- 2.42.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Enable building of the devel RPM package from Kbuild 2024-04-17 4:37 [PATCH 0/2] Enable building of the devel RPM package from Kbuild Pratham Patel 2024-04-17 4:37 ` [PATCH 1/2] kbuild: allow toggling the `with_devel` RPM macro Pratham Patel 2024-04-17 4:37 ` [PATCH 2/2] docs: kbuild: document KBUILD_RPM_WITH_DEVEL Pratham Patel @ 2024-04-17 14:48 ` Nathan Chancellor 2024-04-17 15:08 ` Pratham Patel 2 siblings, 1 reply; 8+ messages in thread From: Nathan Chancellor @ 2024-04-17 14:48 UTC (permalink / raw) To: Pratham Patel Cc: Masahiro Yamada, Nicolas Schier, Jonathan Corbet, linux-kbuild, linux-doc, linux-kernel, thefirst1322 On Wed, Apr 17, 2024 at 04:37:32AM +0000, Pratham Patel wrote: > This addresses a minor nit where I want a `-devel` RPM package to be > built when I build a binary RPM package with either `binrpm-pkg` > or `rpm-pkg` target(s). > > Pratham Patel (2): > kbuild: allow toggling the `with_devel` RPM macro > docs: kbuild: document KBUILD_RPM_WITH_DEVEL > > Documentation/kbuild/kbuild.rst | 6 ++++++ > scripts/Makefile.package | 5 ++++- > 2 files changed, 10 insertions(+), 1 deletion(-) > > -- > 2.42.0 > Hmmm, when I execute $ make -skj"$(nproc)" ARCH=x86_64 O=build mrproper defconfig binrpm-pkg I end up with $ ls -1 build/rpmbuild/RPMS/x86_64 kernel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm kernel-devel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm kernel-headers-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm so it seems like this is already happening? Cheers, Nathan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Enable building of the devel RPM package from Kbuild 2024-04-17 14:48 ` [PATCH 0/2] Enable building of the devel RPM package from Kbuild Nathan Chancellor @ 2024-04-17 15:08 ` Pratham Patel 2024-04-17 15:47 ` Nathan Chancellor 0 siblings, 1 reply; 8+ messages in thread From: Pratham Patel @ 2024-04-17 15:08 UTC (permalink / raw) To: Nathan Chancellor Cc: Masahiro Yamada, Nicolas Schier, Jonathan Corbet, linux-kbuild, linux-doc, linux-kernel, thefirst1322 On Wed Apr 17, 2024 at 8:18 PM IST, Nathan Chancellor wrote: > On Wed, Apr 17, 2024 at 04:37:32AM +0000, Pratham Patel wrote: > > This addresses a minor nit where I want a `-devel` RPM package to be > > built when I build a binary RPM package with either `binrpm-pkg` > > or `rpm-pkg` target(s). > > > > Pratham Patel (2): > > kbuild: allow toggling the `with_devel` RPM macro > > docs: kbuild: document KBUILD_RPM_WITH_DEVEL > > > > Documentation/kbuild/kbuild.rst | 6 ++++++ > > scripts/Makefile.package | 5 ++++- > > 2 files changed, 10 insertions(+), 1 deletion(-) > > > > -- > > 2.42.0 > > > > Hmmm, when I execute > > $ make -skj"$(nproc)" ARCH=x86_64 O=build mrproper defconfig binrpm-pkg > > I end up with > > $ ls -1 build/rpmbuild/RPMS/x86_64 > kernel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > kernel-devel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > kernel-headers-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > so it seems like this is already happening? > > Cheers, > Nathan Ah sorry, that was a typo. I meant to say the following: "This addresses a minor nit where I **don't** want a `-devel` RPM package to be built when I build a binary RPM package with either `binrpm-pkg` or `rpm-pkg` target(s)." That is because on ARM systems where I just need to quickly test the upstream defconfig, I don't really need the `-devel` package. Also, I see that in a hurry, I did the opposite of what I wanted in the patches. This went unnoticed since I had KBUILD_RPM_WITH_DEVEL=0 for me during testing. Sorry about that! I'll send a v2 fixing this stupid mistake. -- Pratham Patel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Enable building of the devel RPM package from Kbuild 2024-04-17 15:08 ` Pratham Patel @ 2024-04-17 15:47 ` Nathan Chancellor 2024-04-17 15:50 ` Pratham Patel 0 siblings, 1 reply; 8+ messages in thread From: Nathan Chancellor @ 2024-04-17 15:47 UTC (permalink / raw) To: Pratham Patel Cc: Masahiro Yamada, Nicolas Schier, Jonathan Corbet, linux-kbuild, linux-doc, linux-kernel, thefirst1322 On Wed, Apr 17, 2024 at 03:08:57PM +0000, Pratham Patel wrote: > On Wed Apr 17, 2024 at 8:18 PM IST, Nathan Chancellor wrote: > > On Wed, Apr 17, 2024 at 04:37:32AM +0000, Pratham Patel wrote: > > > This addresses a minor nit where I want a `-devel` RPM package to be > > > built when I build a binary RPM package with either `binrpm-pkg` > > > or `rpm-pkg` target(s). > > > > > > Pratham Patel (2): > > > kbuild: allow toggling the `with_devel` RPM macro > > > docs: kbuild: document KBUILD_RPM_WITH_DEVEL > > > > > > Documentation/kbuild/kbuild.rst | 6 ++++++ > > > scripts/Makefile.package | 5 ++++- > > > 2 files changed, 10 insertions(+), 1 deletion(-) > > > > > > -- > > > 2.42.0 > > > > > > > Hmmm, when I execute > > > > $ make -skj"$(nproc)" ARCH=x86_64 O=build mrproper defconfig binrpm-pkg > > > > I end up with > > > > $ ls -1 build/rpmbuild/RPMS/x86_64 > > kernel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > kernel-devel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > kernel-headers-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > > so it seems like this is already happening? > > > > Cheers, > > Nathan > > Ah sorry, that was a typo. I meant to say the following: > "This addresses a minor nit where I **don't** want a `-devel` RPM > package to be built when I build a binary RPM package with either > `binrpm-pkg` or `rpm-pkg` target(s)." > > That is because on ARM systems where I just need to quickly test the > upstream defconfig, I don't really need the `-devel` package. > > Also, I see that in a hurry, I did the opposite of what I wanted in the > patches. This went unnoticed since I had KBUILD_RPM_WITH_DEVEL=0 for me > during testing. Sorry about that! > > I'll send a v2 fixing this stupid mistake. Ah, understood! I am not sure you actually need a v2 though because I think you can already accomplish what you are looking for by adding RPMOPTS='--without devel' to your make command, at least that works for me. Commit 2a291fc315b6 ("kbuild: rpm-pkg: introduce %{with_devel} switch to select devel package") introduced this. Cheers, Nathan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Enable building of the devel RPM package from Kbuild 2024-04-17 15:47 ` Nathan Chancellor @ 2024-04-17 15:50 ` Pratham Patel 2024-04-20 7:29 ` Masahiro Yamada 0 siblings, 1 reply; 8+ messages in thread From: Pratham Patel @ 2024-04-17 15:50 UTC (permalink / raw) To: Nathan Chancellor Cc: Masahiro Yamada, Nicolas Schier, Jonathan Corbet, linux-kbuild, linux-doc, linux-kernel, thefirst1322 On Wed Apr 17, 2024 at 9:17 PM IST, Nathan Chancellor wrote: > On Wed, Apr 17, 2024 at 03:08:57PM +0000, Pratham Patel wrote: > > On Wed Apr 17, 2024 at 8:18 PM IST, Nathan Chancellor wrote: > > > On Wed, Apr 17, 2024 at 04:37:32AM +0000, Pratham Patel wrote: > > > > This addresses a minor nit where I want a `-devel` RPM package to be > > > > built when I build a binary RPM package with either `binrpm-pkg` > > > > or `rpm-pkg` target(s). > > > > > > > > Pratham Patel (2): > > > > kbuild: allow toggling the `with_devel` RPM macro > > > > docs: kbuild: document KBUILD_RPM_WITH_DEVEL > > > > > > > > Documentation/kbuild/kbuild.rst | 6 ++++++ > > > > scripts/Makefile.package | 5 ++++- > > > > 2 files changed, 10 insertions(+), 1 deletion(-) > > > > > > > > -- > > > > 2.42.0 > > > > > > > > > > Hmmm, when I execute > > > > > > $ make -skj"$(nproc)" ARCH=x86_64 O=build mrproper defconfig binrpm-pkg > > > > > > I end up with > > > > > > $ ls -1 build/rpmbuild/RPMS/x86_64 > > > kernel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > kernel-devel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > kernel-headers-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > > > > so it seems like this is already happening? > > > > > > Cheers, > > > Nathan > > > > Ah sorry, that was a typo. I meant to say the following: > > "This addresses a minor nit where I **don't** want a `-devel` RPM > > package to be built when I build a binary RPM package with either > > `binrpm-pkg` or `rpm-pkg` target(s)." > > > > That is because on ARM systems where I just need to quickly test the > > upstream defconfig, I don't really need the `-devel` package. > > > > Also, I see that in a hurry, I did the opposite of what I wanted in the > > patches. This went unnoticed since I had KBUILD_RPM_WITH_DEVEL=0 for me > > during testing. Sorry about that! > > > > I'll send a v2 fixing this stupid mistake. > > Ah, understood! I am not sure you actually need a v2 though because I > think you can already accomplish what you are looking for by adding > > RPMOPTS='--without devel' > > to your make command, at least that works for me. Commit 2a291fc315b6 > ("kbuild: rpm-pkg: introduce %{with_devel} switch to select devel > package") introduced this. > > Cheers, > Nathan Oh, didn't know that, thank you. :) -- Pratham Patel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] Enable building of the devel RPM package from Kbuild 2024-04-17 15:50 ` Pratham Patel @ 2024-04-20 7:29 ` Masahiro Yamada 0 siblings, 0 replies; 8+ messages in thread From: Masahiro Yamada @ 2024-04-20 7:29 UTC (permalink / raw) To: Pratham Patel Cc: Nathan Chancellor, Nicolas Schier, Jonathan Corbet, linux-kbuild, linux-doc, linux-kernel, thefirst1322 On Thu, Apr 18, 2024 at 12:51 AM Pratham Patel <prathampatel@thefossguy.com> wrote: > > On Wed Apr 17, 2024 at 9:17 PM IST, Nathan Chancellor wrote: > > On Wed, Apr 17, 2024 at 03:08:57PM +0000, Pratham Patel wrote: > > > On Wed Apr 17, 2024 at 8:18 PM IST, Nathan Chancellor wrote: > > > > On Wed, Apr 17, 2024 at 04:37:32AM +0000, Pratham Patel wrote: > > > > > This addresses a minor nit where I want a `-devel` RPM package to be > > > > > built when I build a binary RPM package with either `binrpm-pkg` > > > > > or `rpm-pkg` target(s). > > > > > > > > > > Pratham Patel (2): > > > > > kbuild: allow toggling the `with_devel` RPM macro > > > > > docs: kbuild: document KBUILD_RPM_WITH_DEVEL > > > > > > > > > > Documentation/kbuild/kbuild.rst | 6 ++++++ > > > > > scripts/Makefile.package | 5 ++++- > > > > > 2 files changed, 10 insertions(+), 1 deletion(-) > > > > > > > > > > -- > > > > > 2.42.0 > > > > > > > > > > > > > Hmmm, when I execute > > > > > > > > $ make -skj"$(nproc)" ARCH=x86_64 O=build mrproper defconfig binrpm-pkg > > > > > > > > I end up with > > > > > > > > $ ls -1 build/rpmbuild/RPMS/x86_64 > > > > kernel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > > kernel-devel-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > > kernel-headers-6.9.0_rc4_00031_g96fca68c4fbf-1.x86_64.rpm > > > > > > > > so it seems like this is already happening? > > > > > > > > Cheers, > > > > Nathan > > > > > > Ah sorry, that was a typo. I meant to say the following: > > > "This addresses a minor nit where I **don't** want a `-devel` RPM > > > package to be built when I build a binary RPM package with either > > > `binrpm-pkg` or `rpm-pkg` target(s)." > > > > > > That is because on ARM systems where I just need to quickly test the > > > upstream defconfig, I don't really need the `-devel` package. > > > > > > Also, I see that in a hurry, I did the opposite of what I wanted in the > > > patches. This went unnoticed since I had KBUILD_RPM_WITH_DEVEL=0 for me > > > during testing. Sorry about that! > > > > > > I'll send a v2 fixing this stupid mistake. > > > > Ah, understood! I am not sure you actually need a v2 though because I > > think you can already accomplish what you are looking for by adding > > > > RPMOPTS='--without devel' > > > > to your make command, at least that works for me. Commit 2a291fc315b6 > > ("kbuild: rpm-pkg: introduce %{with_devel} switch to select devel > > package") introduced this. > > > > Cheers, > > Nathan > > Oh, didn't know that, thank you. :) > > -- Pratham Patel > As explained in the commit description of a55d4aee76ca72e198a657cb471d2a3b37983072 -- Best Regards Masahiro Yamada ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-04-20 7:29 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-17 4:37 [PATCH 0/2] Enable building of the devel RPM package from Kbuild Pratham Patel 2024-04-17 4:37 ` [PATCH 1/2] kbuild: allow toggling the `with_devel` RPM macro Pratham Patel 2024-04-17 4:37 ` [PATCH 2/2] docs: kbuild: document KBUILD_RPM_WITH_DEVEL Pratham Patel 2024-04-17 14:48 ` [PATCH 0/2] Enable building of the devel RPM package from Kbuild Nathan Chancellor 2024-04-17 15:08 ` Pratham Patel 2024-04-17 15:47 ` Nathan Chancellor 2024-04-17 15:50 ` Pratham Patel 2024-04-20 7:29 ` Masahiro Yamada
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox